您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關sed的基礎用法是怎么樣的,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
Sed包含多個功能,最常用的是替換命令
1 替換
s/pattern/replacement/flags
Flags包括如下
n:1-512之間的數字,對第n次匹配進行替換
g:對所有匹配情況進行全局修改
p:打印模式所有內容
w:file,將模式內容寫入文件file
對于replacement,如下字符有特殊含義
&:將其替換為pattern
\n:匹配第n個字串,在pattern中用”\(“和”\)”指定
\:轉義字符
&替換成pattern,可\&轉義
[oracle@ ~]$ cat test
ORA
[oracle@ ~]$ cat test | sed 's/ORA/O’ Reilly \& Associates, Inc./g'
O’ Reilly & Associates, Inc.
[oracle@ ~]$ cat test | sed 's/ORA/O’ Reilly & Associates, Inc./g'
O’ Reilly ORA Associates, Inc.
[oracle@ ~]$ cat test1
See Section 19.40 See Section 18.89
See Section 19.09
See Section 07.10
[oracle@ ~]$ sed 's/See Section [1-9][0-9]*\.[1-9][0-9]*/(&)/2' test1 –為每行的第二個匹配字符包圍”()”
See Section 19.40 (See Section 18.89)
See Section 19.09
See Section 07.10
將每行第2個See替代為換行字符
[oracle@ ~]$ sed 's/See/\\n/2' test1 --不起作用
See Section 19.40 \n Section 18.89
See Section 19.09
See Section 07.10
[oracle@ ~]$ sed 's/See/\
> /2' test1 --成功換行,但不太好維護
See Section 19.40
Section 18.89
See Section 19.09
See Section 07.10
[oracle@ ~]$ sed 's/See/\n/2' test1 --使用\n替代
See Section 19.40
Section 18.89
See Section 19.09
See Section 07.10
搜索每行第2個匹配模式,并將其第1/2個元素互換位置
[oracle@ ~]$ sed 's/\(See Section\) \([1-9][0-9]\.[1-9][0-9]\)/\2 \1/2' test1
See Section 19.40 18.89 See Section
See Section 19.09
See Section 07.10
[oracle@ ~]$ sed '/0[1-9]\./ s/\(See Section\) \([0-9][0-9]*\.[1-9][0-9]\)/\2 \1/' test1 –先搜索包含”0[1-9].”的行,如果其滿足匹配模式,則將其第1/2個元素互換位置
See Section 19.40 See Section 18.89
See Section 19.09
07.10 See Section
[oracle@ ~]$ cat test1 | grep UNIX
UNIX
[oracle@ ~]$ sed 's/UNIX/\\s-1&\\s0/' test1 --使用&替代前面的UNIX
\s-1UNIX\s0
[oracle@ ~]$ sed 's/UNIX/\s-1\&\\s0/' test1 –使用\&將其作為普通字符,\\s改為\s,而s不是特殊字符所以\s等同于s
s-1&\s0
[oracle@ ~]$ sed 's/UNIX/s-1\&\\s0/' test1
s-1&\s0
忽略大小寫
[oracle@ ~]$ cat test5
who finger w last
[oracle@ ~]$ sed 's/FINger/www/gI' test5
who www w last
2 刪除(d)
如果行匹配則刪除該行
/^$/d –刪除空行
[oracle@ ~]$ cat test3
adf
sdf
[oracle@ ~]$ sed '/^$/d' test3 --刪除空行
adf
sdf
[oracle@ ~]$ sed '/./!d' test3 --刪除空行,!表示not,/./!即不帶有字符的行
adf
sdf
[oracle@ ~]$ sed '/./d' test3 – 刪除非空行
[oracle@ ~]$ sed '$d' test3 --刪除最后一行
adf
[oracle@ ~]$ sed '2d' test3 –刪除第2行
adf
sdf
[oracle@ ~]$ sed '$!d' test3 –只保留最后一行數據,其余全刪除
Sdf
3 追加(a)/插入(i)/更改(c)
格式如下
[line-address][a|i|c] text
注:<<sed and awk>>(O’Reilly)指出 “這些命令必須在多行上指定, (\用于轉義行尾)”
[line-address][a|i|c]\
Text
但個人試驗發現不需要這么麻煩
[oracle@ ~]$ cat test3
adf
sdf
在第1行和最后1行前后分別添加信息
[oracle@ ~]$ sed -e '1i insert before the first line' -e '$a append after the last line' test3
insert before the first line
adf
sdf
append after the last line
使用更改(c)命令有時比替換更高效,如下:
將所有以”.sp”開頭的行的輸入參數替換為5
[oracle@ ~]$ cat test4
.sp 1.5
.sp 4
.sp
5.sp 67
[oracle@ ~]$ sed '/^\.sp/c \.sp 5' test4 --搜索以.sp開頭的行,將整行替代為.sp 5
.sp 5
.sp 5
.sp 5
5.sp 67
4 列表(l)
顯示模式空間的內容,將非打印字符顯示為兩個數字的ASCII代碼,類似vi的(:l)或者cat -v;
可用于檢測不可見字符;
oracle@ ~]$ cat -v test5
who finger w last^M
^M
^M
[oracle@ ~]$ sed -e "l" test5
who finger w last\r$
who finger w last
\r$
\r$
[oracle@ ~]$ sed -n -e "l" test5
who finger w last\r$
\r$
\r$
其中-n選項作用如下:-n, --quiet, --silent suppress automatic printing of pattern space
5下一行(n)
輸出模式空間的內容,然后讀取輸入的下一行,而不返回腳本的頂端;
[oracle@usuwsoadb06 ~]$ cat -n test7
1 apple
2 banana
3 mango
4 orange
5 strawberry
[oracle@usuwsoadb06 ~]$ sed '/ban/{n;d;}' test7 --刪除匹配模式的下一行
apple
banana
orange
strawberry
--N與n的區別,前者會輸出當前匹配行
[oracle@usuwsoadb06 ~]$ sed -n '/ban/ {n; p;}' test7
mango
[oracle@usuwsoadb06 ~]$ sed -n '/ban/ {N; p;}' test7
banana
mango
尋找包含ban字符的下一行,將其替換為justin
[oracle@usuwsoadb06 ~]$ sed '/ban/ {n; s/.*/justin/;}' test7
apple
banana
justin --原本的mango現在變為justin
orange
strawberry
6讀寫文件(r/w)
寫文件
從某個文件讀取符合條件的行,并將其寫入另外一個文件,語法如下:
Sed ‘/pattern/w outputfile’ inputfile
[oracle@ ~]$ cat -n test7
1 apple
2 banana
3 mango
4 orange
5 strawberry
[oracle@ ~]$ sed -n '2,4w test8' test7 –將test7的2-4行輸入到test8
[oracle@ ~]$ cat test8
banana
mango
orange
[oracle@ ~]$ sed -n '/mango/,$w test8' test7 –將test7從包含mango行直到最后一行的數據寫入test8
[oracle@ ~]$ cat test8
mango
orange
strawberry
[oracle@ ~]$ sed -n '$!w test8' test7 –除去最后一行將test7所有內容寫入test8
[oracle@ ~]$ cat test8
apple
banana
mango
orange
讀文件 --并不會實際改變文件內容
Sed ‘/pattern/r outputfile’ inputfile
--將文件內容寫入sed output
[oracle@ ~]$ cat test9
1apple
1banana
1mango
[oracle@ ~]$ cat test10
2orange
2strawberry
[oracle@ ~]$ sed '2,$r test10' test9 –將test10文件內容插入test9自第2行直至最后一行
1apple
1banana
2orange
2strawberry
1mango
2orange
2strawberry
[oracle@ ~]$ sed '$!r test10' test9—將test10插入test9除最后1行的其余行之后
1apple
2orange
2strawberry
1banana
2orange
2strawberry
1mango
看完上述內容,你們對sed的基礎用法是怎么樣的有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。