sed 基本命令

本章介紹了幾個有用的SED命令。

Delete命令

SED提供各種命令來操作文本。讓我們首先探討 delete 命令。這是執(zhí)行刪除命令的方式:

[address1[,address2]]d 

address1 和 address2 分別是起始地址和結束地址,可以是行號或模式字符串,這兩個參數(shù)都是可選的。

注意(,) delete 命令僅從模式緩沖區(qū)中刪除行,而不會覆蓋文件內容。以下示例說明了這一點。

$sed 'd' books.txt 

但是為什么不有輸出內容?因為默認情況下SED在每行上運行,但沒有輸出命令。

下面的示例僅刪除第4行。

$sed '4d' books.txt 

執(zhí)行上述代碼后,您將得到以下輸出:

1) A Storm of Swords, George R. R. Martin, 1216 
2) The Two Towers, J. R. R. Tolkien, 352 
3) The Alchemist, Paulo Coelho, 197 
5) The Pilgrimage, Paulo Coelho, 288 
6) A Game of Thrones, George R. R. Martin, 864

此外,SED還使用 逗號(,) 接受 地址范圍 。例如,以下示例從2到4刪除所有行。

$sed '2, 4 d' books.txt 

執(zhí)行上述代碼后,您將得到以下輸出:

1) A Storm of Swords, George R. R. Martin, 1216 
5) The Pilgrimage, Paulo Coelho, 288 
6) A Game of Thrones, George R. R. Martin, 864

SED的地址范圍不僅限于數(shù)字,我們還可以將模式指定為地址,下面的示例刪除了作者Paulo Coelho的所有書籍。

$sed '/Paulo Coelho/d' books.txt 

執(zhí)行上述代碼后,您將得到以下輸出:

1) A Storm of Swords, George R. R. Martin, 1216 
2) The Two Towers, J. R. R. Tolkien, 352 
4) The Fellowship of the Ring, J. R. R. Tolkien, 432 
6) A Game of Thrones, George R. R. Martin, 864 

我們還可以使用文本模式指定地址范圍。以下示例刪除了"Storm"和"Fellowship"之間的所有行。

$sed '/Storm/,/Fellowship/d' books.txt  
5) The Pilgrimage, Paulo Coelho, 288 
6) A Game of Thrones, George R. R. Martin, 864 

Write命令

我們對任何文件執(zhí)行的重要操作之一就是備份,即我們制作了該文件的另一個副本。 SED提供 write 命令以將模式緩沖區(qū)的內容存儲在文件中。下面給出的是 write 命令的語法,它與 delete 命令相似。

[address1[,address2]]w file 

在這里(,) address1 和 address2 分別是開始地址和結束參數(shù),這兩個參數(shù)都是可選的。

在以上語法中(,) w 表示寫入命令,而 file 是用于存儲內容的文件名。請小心 file 參數(shù),提供文件名后,如果文件名不存在,SED會即時創(chuàng)建一個文件,如果文件名已存在,則SED會覆蓋它。

讓我們使用SED復制文件。請注意(,) w 和文件之間必須恰好有一個空格。

$sed -n 'w books.bak' books.txt 

我們創(chuàng)建了另一個名為 books.bak的文件。現(xiàn)在,驗證兩個文件具有相同的內容。

$diff books.txt books.bak  
$echo $?

執(zhí)行上述代碼后,您將得到以下輸出:

0

?cp 命令執(zhí)行的操作完全相同。它允許創(chuàng)建一個僅包含源文件中某些行的文件。讓我們僅將偶數(shù)行存儲到另一個文件中。

$sed -n '2~2 w junk.txt' books.txt  
$cat junk.txt 

執(zhí)行上述代碼后,您將得到以下輸出:

2) The Two Towers, J. R. R. Tolkien, 352 
4) The Fellowship of the Ring, J. R. R. Tolkien, 432 
6) A Game of Thrones, George R. R. Martin, 864 

您還可以在write命令中使用 逗號(,) 美元($) 加號(+)運算符。

除此之外,SED還支持使用write命令進行模式匹配。假設您要將各個作者的所有書籍都存儲到一個單獨的文件中。

$sed -n -e '/Martin/w Martin.txt' -e '/Paulo/w Paulo.txt' -e '/Tolkien/w 
Tolkien.txt' books.txt 

在上面的示例中,我們將每行與一個模式匹配,并將匹配的行存儲在特定文件中。這很簡單。為了指定多個命令,我們使用了SED命令的 -e 參數(shù)?,F(xiàn)在讓我們使用每個文件包含的內容:

$cat Martin.txt

執(zhí)行上述代碼后,您將得到以下輸出:

1) A Storm of Swords, George R. R. Martin, 1216 
6) A Game of Thrones, George R. R. Martin, 864

讓我們顯示文件內容。

$cat Paulo.txt

執(zhí)行上述代碼后,您將得到以下輸出:

3) The Alchemist, Paulo Coelho, 197 
5) The Pilgrimage, Paulo Coelho, 288 

讓我們顯示文件內容。

$cat Tolkien.txt

執(zhí)行上述代碼后,您將得到以下輸出:

2) The Two Towers, J. R. R. Tolkien, 352 
4) The Fellowship of the Ring, J. R. R. Tolkien, 432 

Append命令

任何文本編輯器最有用的操作之一就是提供附加函數(shù)。 SED通過其append命令支持此操作。下面給出了append的語法:

[address]a\
Append text 

讓我們在第4行之后附加一個新書條目。下面的示例顯示了如何做

$sed '4 a 7) Adultry, Paulo Coelho, 234' books.txt 

執(zhí)行上述代碼后,您將得到以下輸出:

1) A Storm of Swords, George R. R. Martin, 1216 
2) The Two Towers, J. R. R. Tolkien, 352 
3) The Alchemist, Paulo Coelho, 197 
4) The Fellowship of the Ring, J. R. R. Tolkien, 432 
7) Adultry, Paulo Coelho, 234 
5) The Pilgrimage, Paulo Coelho, 288 
6) A Game of Thrones, George R. R. Martin, 864

讓我們在文件末尾插入一個文本行。為此,請使用 $ 作為地址。以下示例說明了這一點:

$sed '$a 7) Adultry, Paulo Coelho, 234' books.txt

執(zhí)行上述代碼后,您將得到以下輸出:

1) A Storm of Swords, George R. R. Martin, 1216 
2) The Two Towers, J. R. R. Tolkien, 352 
3) The Alchemist, Paulo Coelho, 197 
4) The Fellowship of the Ring, J. R. R. Tolkien, 432 
5) The Pilgrimage, Paulo Coelho, 288 
6) A Game of Thrones, George R. R. Martin, 864 
7) Adultry, Paulo Coelho, 234 

除了行號,我們還可以使用文本模式指定地址。例如,以下示例在匹配字符串 The Alchemist 之后追加文本。

$sed '/The Alchemist/a 7) Adultry, Paulo Coelho, 234' books.txt  

執(zhí)行上述代碼后,您將得到以下輸出:

1) A Storm of Swords, George R. R. Martin, 1216 
2) The Two Towers, J. R. R. Tolkien, 352 
3) The Alchemist, Paulo Coelho, 197 
7) Adultry, Paulo Coelho, 234 
4) The Fellowship of the Ring, J. R. R. Tolkien, 432 
5) The Pilgrimage, Paulo Coelho, 288 
6) A Game of Thrones, George R. R. Martin, 864 

請注意,如果有多個模式匹配,則在每次匹配后都將附加文本。以下示例說明了這種情況。

$sed '/The/a 7) Adultry, Paulo Coelho, 234' books.txt 

執(zhí)行上述代碼后,您將得到以下輸出:

1) A Storm of Swords, George R. R. Martin, 1216 
2) The Two Towers, J. R. R. Tolkien, 352 
7) Adultry, Paulo Coelho, 234 
3) The Alchemist, Paulo Coelho, 197 
7) Adultry, Paulo Coelho, 234 
4) The Fellowship of the Ring, J. R. R. Tolkien, 432 
7) Adultry, Paulo Coelho, 234 
5) The Pilgrimage, Paulo Coelho, 288 
7) Adultry, Paulo Coelho, 234 
6) A Game of Thrones, George R. R. Martin, 864 

Change 命令

SED提供由c表示的 change 或 replace 命令。此命令有助于用新文本替換現(xiàn)有行。下面給出的是change命令的語法:

[address1[,address2]]c\
Replace text

讓我們用其他一些文本代替第三行。

下面給出的是 N 命令的語法。

[address1[,address2]]N

讓我們打印以逗號分隔的書名及其作者列表。以下示例說明了這一點。

$sed 'N; s/\n/, /g' books.txt 

執(zhí)行上述代碼后,您將得到以下輸出:

A Storm of Swords, George R. R. Martin 
The Two Towers, J. R. R. Tolkien 
The Alchemist, Paulo Coelho 
The Fellowship of the Ring, J. R. R. Tolkien 
The Pilgrimage, Paulo Coelho 
A Game of Thrones, George R. R. Martin

像 p 命令一樣,我們有一個 P 命令來打印由 N 命令。下面給出的是 P 命令的語法,與 p 命令相似。

[address1[,address2]]P 

在前面的示例中,我們看到 N 命令創(chuàng)建了以換行符分隔的書名及其作者列表。我們僅打印其中的第一部分,即僅打印書名。以下命令對此進行了說明。

$sed -n 'N;P' books.txt

執(zhí)行上述代碼后,您將得到以下輸出:

A Storm of Swords 
The Two Towers 
The Alchemist 
The Fellowship of the Ring 
The Pilgrimage 
A Game of Thrones

請注意,在沒有 N 的情況下,它的行為與 p 命令相同。以下簡單命令說明了這種情況。

$sed -n 'P' books.txt

執(zhí)行上述代碼后,您將得到以下輸出:

A Storm of Swords 
George R. R. Martin 
The Two Towers 
J. R. R. Tolkien 
The Alchemist 
Paulo Coelho 
The Fellowship of the Ring 
J. R. R. Tolkien 
The Pilgrimage 
Paulo Coelho 
A Game of Thrones 
George R. R. Martin

除此之外,SED還提供了 v 命令來檢查版本。如果提供的版本大于安裝的SED版本,則命令執(zhí)行失敗。請注意,此選項只能在GNU中使用。

下面給出的是 v 命令的語法。

[address1[,address2]]v [version]

首先,找出SED的當前版本。

$sed --version 

執(zhí)行上述代碼后,您將得到以下輸出:

sed (GNU sed) 4.2.2 

在以下示例中,SED版本大于4.2.2版本,因此SED命令中止其執(zhí)行。

$sed 'v 4.2.3' books.txt 

執(zhí)行上述代碼后,您將得到以下輸出:

sed: -e expression #1, char 7: expected newer version of sed

但是,如果提供的版本小于或等于4.2.2,則該命令將按預期工作。

$sed 'v 4.2.2' books.txt

執(zhí)行上述代碼后,您將得到以下輸出:

A Storm of Swords 
George R. R. Martin 
The Two Towers 
J. R. R. Tolkien 
The Alchemist 
Paulo Coelho 
The Fellowship of the Ring 
J. R. R. Tolkien 
The Pilgrimage 
Paulo Coelho 
A Game of Thrones George R. R. Martin
丰满人妻一级特黄a大片,午夜无码免费福利一级,欧美亚洲精品在线,国产婷婷成人久久Av免费高清