sed替換

1. sed能夠替換給定的文本中的字符串,能夠利用正則表達式進行匹配
$ sed 's/pattern/replace_string/' file
或者
$ cat file | sed 's/pattern/replace_string/' file
使用-i選項,能夠將替換的結果應用於原文件,也能夠藉助重定向來保存文件:
sed 's/text/replace/' file > newfile
其實能夠使用
sed -i 's/pattern/replace_string/' file
後綴/g意味着替換每一處,有時候不須要替換前N處匹配,有一個選項能夠用來忽略前N處匹配,並從第N+1處開始替換。
$ echo this thisthisthis | sed 's/this/THIS/2g'
$ echo this thisthisthis | sed 's/this/THIS/3g'
當須要從第N處開始匹配時,能夠使用/Ng
字符/在sed中做爲定界符使用,也能夠用其餘字符代替。html

1. 刪除空白行
sed '/^$/d' filelinux

2. 已匹配的字符串標記&
echo this is an example | sed 's/\w\+/[&]/g'
正則表達式\w\+匹配每一個單詞,而後用[&]來替換它,&對應於以前所匹配的單詞。git

3. 子串匹配標記\1
&表明匹配給定樣式的字符串,但咱們也能夠匹配給定樣式的其中一部分
echo this is digit 7 in a number | sed 's/digit \([0-9]\)/\1/'
這條命令將digit 7 替換成7,樣式中匹配到的子串是7,\(pattern\)用於匹配子串,模式被包括在使用斜線轉義過的()中,對於匹配到的第一個子串,其對應的標記是\1,匹配到的第二個子串是\2,日後依次類推,下面示例中包含了多個匹配:
echo seven EIGHT | sed 's/\([a-z]\+\) \([A-Z]\+\)/\2 \1/'正則表達式

4. 引用
$text=hello
echo "hello world" | sed "s/$text/HELLO/"shell

5. 追加內容 sed ‘/匹配詞/a\要加入的內容’ example.file(將內容追加到匹配的目標行的下一行位置)
i 插入內容 sed ‘/匹配詞/i\要加入的內容’ example.file 將內容插入到匹配的行目標的上一行位置)
示例:
#我要把文件的包含「chengyongxu.com」這個關鍵詞的行前或行後加入一行,內容爲「allow chengyongxu.cn」this

行前加
sed -i '/allow chengyongxu.com/i\allow chengyongxu.cn' the.conf.file
行先後
sed -i '/allow chengyongxu.com/a\allow chengyongxu.cn' the.conf.fileserver

6. 刪除指定行的上一行
sed -i -e :a -e '$!N;s/.*\n\(.*ServerName abc.com\)/\1/;ta' -e 'P;D' $file
刪除指定字符串之間的內容
sed -i '/ServerName abc.com/,/\/VirtualHost/d' $filehttp://www.linuxso.com/shell/17542.htmlhtm

7. 也可在vi模式下,將文本中的內容替換,esc : %s/dog/sdog/ 這樣能夠把文件直接修改,而後保存便可
在vi模式下也可進行區間替換,如將第2至第7行之間的cat 換成scat,esc : 2,7 s/cat/scat/ 一樣保存修改便可字符串

8. sed查找行,如查找出vsftpd.conf中的非註釋行
[root@server4 shell]# cat vsfptd.conf | sed '/#/d'
刪除空格行和以#號開頭的行,並寫入文件vsftpd.config,用-e開關鏈接兩個控制語句
[root@server4 shell]# cat vsfptd.conf | sed -e'/^#/d' -e '/^$/d' >vsftpd.configstring

9. sed刪除匹配的行的後續多行$sed '/Storage/,+2d' thegeekstuff.txt sed刪除匹配行到尾行$sed '/Website Design/,$d' thegeekstuff.txt sed刪除匹配行到首行

相關文章
相關標籤/搜索