sed 實(shí)用工具

SED是一個了不起的實(shí)用程序,它允許使用多種方法來解決問題。這是UNIX方式,SED完美地證明了這一點(diǎn)。 GNU/Linux提供了許多有用的實(shí)用程序來執(zhí)行日常任務(wù),讓我們使用SED模擬一些實(shí)用程序。

Cat 命令

在以下示例中,每行都作為默認(rèn)工作流程的一部分進(jìn)行打印。

$sed '' 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 

以下示例使用print命令顯示文件內(nèi)容。

$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

刪除空行

在以下示例中," ^ $"表示空行,并且當(dāng)模式匹配成功時,空行將被刪除。

$echo -e "Line #1\n\n\nLine #2" | sed '/^$/d'

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

Line #1 
Line #2 

同樣,下面的示例僅在非空行時打印該行。

$echo -e "Line #1\n\n\nLine #2" | sed -n '/^$/!p'

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

Line #1 
Line #2

刪除C++注釋

讓我們創(chuàng)建一個示例C++程序。

#include <iostream> 
using namespace std; 

int main(void) 
{ 
   //Displays message on stdout. 
   cout >> "Hello, cainiaoplus !!!" >> endl;
   return 0; //Return success. 
}

現(xiàn)在,使用以下正則表達(dá)式刪除注釋。

$sed 's|//.*||g' hello.cpp

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

#include <iostream>
using namespace std; 

int main(void) 
{ 
   cout >> "Hello, cainiaoplus !!!" >> endl;
   return 0;  
} 

添加注釋

下面的示例在第3到5行之前添加注釋。

$sed '3,5 s/^/#/' hello.sh 

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

#!/bin/bash 
#pwd 
#hostname 
#uname -a 
who 
who -r 
lsb_release -a

WC -l 命令

" wc -l"命令計(jì)算文件中存在的行數(shù),以下SED表達(dá)式對此進(jìn)行了模擬。

$sed -n '$=' hello.sh 

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

8 

Head 命令

默認(rèn)情況下,head命令打印文件的前10行,讓我們用SED模擬相同的行為。

$sed '10 q' 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

Tail -1 命令

" tail -1"打印文件的最后一行。以下語法顯示了其模擬。

$echo -e "Line #1\nLine #2" > test.txt 
$cat test.txt

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

Line #1 
Line #2 

讓我們編寫SED腳本。

$sed -n '$p' test.txt

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

Line #2 

Dos2unix 命令

在DOS環(huán)境中,換行符由CR/LF字符的組合表示。下面的" dos2unix"命令模擬將DOS換行符轉(zhuǎn)換為UNIX換行符。在GNU/Linux中,此字符通常被視為" ^ M"(控制M)字符。

$echo -e "Line #1\r\nLine #2\r" > test.txt 
$file test.txt

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

test.txt: ASCII text, with CRLF line terminators 

讓我們使用SED模擬命令。

$sed 's/^M$//' test.txt > new.txt   # Press "ctrl+v" followed "ctrl+m" to generate 
"^M" character. 
$file new.txt

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

new.txt: ASCII text 

現(xiàn)在讓我們顯示文件內(nèi)容。

$cat -vte new.txt 

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

Line #1$
Line #2$

Unix2dos 命令

與" dos2unix"相似,有一個" unix2dos"命令可將UNIX換行符轉(zhuǎn)換為DOS換行符。以下示例顯示了相同的模擬。

$echo -e "Line #1\nLine #2" > test.txt 
$file test.txt 

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

test.txt: ASCII text

讓我們使用SED模擬命令。

$sed 's/$/\r/' test.txt  > new.txt 
$file new.txt

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

new.txt: ASCII text, with CRLF line terminators

現(xiàn)在讓我們顯示文件內(nèi)容。

現(xiàn)在讓我們顯示文件內(nèi)容。

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

Line #1^M$
Line #2^M$

Cat -E 命令

" cat -E"命令以Dollar($)字符顯示行尾。以下SED示例是相同的模擬。

$echo -e "Line #1\nLine #2" > test.txt 
$cat -E test.txt 

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

Line #1$
Line #2$

讓我們使用SED模擬命令。

$sed 's|$|&$|' test.txt

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

Line #1$
Line #2$

Cat -ET 命令

" cat -ET"命令在每行末尾顯示Dollar($)符號,并將TAB字符顯示為" ^ I"。以下示例顯示了使用SED對" cat -ET"命令的模擬。

$echo -e "Line #1\tLine #2" > test.txt 
$cat -ET test.txt

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

Line #1^ILine #2$

讓我們使用SED模擬命令。

$sed -n 'l' test.txt | sed 'y/\\t/^I/'

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

Line #1^ILine #2$

nl 命令

" nl "命令僅對文件行編號。下面的SED腳本模擬了此行為。

$echo -e "Line #1\nLine #2" > test.txt 
$sed=test.txt | sed 'N;s/\n/\t/'

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

1 Line #1 
2 Line #2

第一個SED表達(dá)式打印行號,然后打印它們的內(nèi)容,第二個SED表達(dá)式合并這兩行并將換行符轉(zhuǎn)換為TAB字符。

cp 命令

"?cp"命令創(chuàng)建文件的另一個副本。下面的SED腳本模擬了此行為。

$sed -n 'w dup.txt' data.txt 
$diff data.txt dup.txt 
$echo $? 

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

0

Expand 命令

"expand"命令將TAB字符轉(zhuǎn)換為空格。以下代碼顯示了其仿真。

$echo -e "One\tTwo\tThree" > test.txt 
$expand test.txt > expand.txt 
$sed 's/\t//g' test.txt > new.txt 
$diff new.txt expand.txt  
$echo $? 

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

0 

Tee 命令

"tee"命令將數(shù)據(jù)轉(zhuǎn)儲到標(biāo)準(zhǔn)輸出流以及文件中。下面給出的是" tee"命令的模擬。

$echo -e "Line #1\nLine #2" | tee test.txt  
Line #1 
Line #2 

讓我們使用SED模擬命令。

$sed -n 'p; w new.txt' test.txt  

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

Line #1 
Line #2

Cat -s 命令

UNIX" cat -s"命令禁止重復(fù)的空輸出行。以下代碼顯示了對" cat -s"命令的模擬。

$echo -e "Line #1\n\n\n\nLine #2\n\n\nLine #3" > test.txt  
$cat -s test.txt 

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

Line #1  
Line #2
Line #3

讓我們使用SED模擬命令。

$sed '1s/^$//p;/./,/^$/!d' test.txt 

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

Line #1  
Line #2  
Line #3 

Grep 命令

默認(rèn)情況下,模式匹配成功時," grep"命令將打印一行。以下代碼顯示了其仿真。

$echo -e "Line #1\nLine #2\nLine #3" > test.txt  
$grep "Line #1" test.txt 

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

Line #1

讓我們使用SED模擬命令。

$sed -n '/Line #1/p' test.txt 

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

Line #1 

Grep -v 命令

默認(rèn)情況下,模式匹配失敗時," grep -v?"命令將打印一行。以下代碼顯示了其仿真。

$echo -e "Line #1\nLine #2\nLine #3" > test.txt  
$grep -v "Line #1" test.txt

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

Line #2 
Line #3 

讓我們使用SED模擬命令。

$sed -n '/Line #1/!p' test.txt

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

Line #2 
Line #3

Tr 命令

"tr? "命令翻譯字符。下面給出了其模擬。

$echo "ABC" | tr "ABC" "abc" 

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

abc

讓我們使用SED模擬命令。

$echo "ABC" | sed 'y/ABC/abc/'

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

abc
丰满人妻一级特黄a大片,午夜无码免费福利一级,欧美亚洲精品在线,国产婷婷成人久久Av免费高清