Linux命令-Sed用法教程
前言
sed 全名為 stream editor,是用於文字處理的流編輯器,支援正規表示式。sed處理文字時是一次處理一行內容
sed語法
- sed 處理的內容是模式空間中的內容,而非直接處理檔案內容。如果加上引數 i 則可直接修改檔案內容
- 示例:sed -i 's/原字串/新字串/' /home/test.txt
sed [-nefr引數] [function] [filePath]
選項與引數 | 描述 |
---|---|
-n | 使用 silent 模式。在一般 sed 的用法中,輸入的資料都會被輸出到螢幕上。但如果加上 -n 引數後,則不會顯示,如果有跟著 p 標誌,被 sed 特殊處理的那一行會被列出來 |
-e | 直接在 行介面上進行 sed 的動作編輯,執行多條子命令 |
-f | 將 sed 的動作寫在一個檔案內, -f filename 執行 檔案的 sed 動作 |
-r | sed 的動作支援的是延伸型正規表示式的語法 |
-i | 直接修改讀取的檔案內容 |
選項-n,加上-n選項後被設定為安靜模式,也就是不會輸出預設列印資訊,除非子命令中特別指定列印 p 選項,則只會把匹配修改的行進行列印
---- 兩行都列印出來 ---- server11:~/test # echo -e 'hello \n world' | sed 's/hello/csc/' csc world ---- 一行也沒列印 ----- server11:~/test # echo -e 'hello \n world' | sed -n 's/hello/csc/' ---- 列印了匹配行 ----- server11:~/test # echo -e 'hello \n world' | sed -n 's/hello/csc/p' csc
選項-e,多條子命令連續進行操作
echo -e 'hello world' | sed -e 's/hello/csc/' -e 's/world/lwl/' 結果:csc lwl
選項-i,直接修改讀取的檔案內容
server11:~/test # cat file.txt hello world server11:~/test # sed 's/hello/lwl/' file.txt lwl world server11:~/test # cat file.txt hello world ---- 加上引數 i 可以直接修改檔案內容---- server11:~/test # sed -i 's/hello/lwl/' file.txt lwl world server11:~/test # cat file.txt lwl world
選項-f,執行檔案
sed.script指令碼內容: s/hello/csc/ s/world/lwl/ ------ echo "hello world" | sed -f sed.script 結果:csc lwl
選項-r,預設只能支援基本正規表示式,如果需要支援擴充套件正規表示式,需要加上 -r
echo "hello world" | sed -r 's/(hello)|(world)/csc/g' csc csc
function表示式:[n1[,n2]] function or /{pattern}/function
n1, n2 :可選項,一般代表“選擇進行function處理的行數”,舉例來說,如果「function」是需要在 10 到 20 行之間進行的,則表示為 10,20 [function]如果需用正規表示式匹配字串,則可用 /{pattern}/ 匹配
test.txt 內容 111 222 333 444 ----- 刪除非第2第3行之間的所有行 ---------- server11:~ # sed -i '2,3!d' test.txt server11:~ # cat test.txt 222 333 ------ 正規表示式匹配 ------------ server11:~ # echo 'clswcl.txt' | sed -nr '/.*/p' clswcl.txt // /{pattern}/ = /.*/
function 有以下這些選項[/yiji]
function | 描述 |
---|---|
a | 新增:a 的後面可以接字串,而這些字串會在新的一行出現(目前的下一行) |
i | 插入:i 的後面可以接字串,而這些字串會在新的一行出現(目前的上一行) |
c | 取代:c 的後面可以接字串,這些字串可以取代 n1,n2 之間的行 |
d | 刪除:因為是刪除啊,所以 d 後面通常不接任何東西 |
p | 列印:亦即將某個選擇的資料印出。通常 p 會與引數 sed -n 一起執行 |
s | 取代:可以直接進行取代的工作哩!通常這個 s 的動作可以搭配正規表示式!例如:1,20 s/old/new/g |
function:-a,行後插入新行
sed -i '/特定字串/a 新行字串' fileName
function:-i,行前插入新行
sed -i '/特定字串/i 新行字串' fileName
function:-c,修改指定內容行
sed -i '/特定字串/c csc lwl' fileName
function:-d,刪除特定字串
sed -i '/特定字串/d' fileName
sed s子命令: s/{pattern}/{replacement}/{flags}
- {pattern}是正規表示式
- 如果{pattern}存在分組,{replacement}中的"\n"代表第n個分組,"&"代表整個匹配的字串。詳情看示例
- flags的引數如下
flags | 描述 |
---|---|
n | 可以是1-512,表示第n次出現的情況進行替換 |
g | 全域性更改 |
p | 列印模式空間的內容 |
w file | 寫入到一個檔案file中 |
示例
server11:~ # echo -e 'hello 1112 world' | sed -r 's/([a-z]+)( [0-9]+ )([a-z]+)/&/' hello 1112 world server11:~ # echo -e 'hello 1112 world' | sed -r 's/([a-z]+)( [0-9]+ )([a-z]+)/\3\2\1/' world 1112 hello
參考文章
- sed -i命令詳解及入門攻略[1]
Reference
[1]sed -i命令詳解及入門攻略:
https://blog.csdn.net/qq_33468857/article/details/84324609
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69901823/viewspace-2777696/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux sed命令用法Linux
- sed命令用法總結
- linux中sed用法Linux
- linux之sed用法Linux
- linux sed 命令Linux
- linux sed命令Linux
- LINUX命令-sedLinux
- 【Linux學習教程】Linux中Sed命令如何使用?Linux
- 【Linux篇】--sed的用法Linux
- Linux命令篇 - sed 命令Linux
- linux之 sed命令Linux
- Linux入門教程之sed 命令常用操作介紹Linux
- Linux sed 命令詳解Linux
- linux sed []命令的作用Linux
- Linux sed命令詳解Linux
- linux下grep命令用法例項教程Linux
- 《Linux下sed命令的使用》Linux
- 【轉】linux中的sed命令Linux
- asmcmd命令用法教程ASM
- sed用法總結
- Linux sed命令詳細說明Linux
- 文字處理流編輯器sed命令用法大全
- Linux重要命之sed命令詳解Linux
- Linux基礎命令---文字編輯sedLinux
- linux sed命令就是這麼簡單Linux
- linux下的文字處理命令sedLinux
- awk sed 用法詳解
- linux 命令sed命令指定行或匹配行插入行Linux
- Linux系統中的管道命令、grep命令、sed命令和awk命令Linux
- linux du命令用法Linux
- Linux 命令 indent 用法Linux
- Linux sed命令常用操作詳解及案例!Linux
- Linux文字處理命令sed基本使用示例Linux
- sed基礎用法小結
- sed命令小記
- sed 命令專題
- Linux高階命令——cut命令用法Linux
- sed 簡明教程