sed 'command' filename(s) 只顯示結果而不修改檔案。
1、sed '2,5d' file 顯示檔案file,除去2-5行,但行數超過檔案實際行數時不會報錯。
sed '/10[1-4]/d' file 顯示檔案file,除去包含101-104的行。
sed '2,$d' file 顯示檔案,只顯示第一行。sed '2,$!d' file則只顯示除第一行外的其它行。
sed '/^ *$/d file 刪除檔案中的空行。
2、sed -n '/10[1-4]/p' file 只顯示檔案file中包含101-104的行。(-n和p必須同時使用,否則只有p時顯示全部檔案並多顯
示一次找到的行)
sed -n '5p' file 只顯示檔案的第5行
3、sed 's/moding/moden/g' file 將moding替換為moden
4、sed -n 's/^west/north/p' file 將west開頭的行替換為north並顯示出來。
5、sed 's/[0-9][0-9][0-9]$/&.5/' file將file檔案中以3個數字結尾的行替換為原數字加".5",&代表搜尋到的字串。
6、sed 's/\(mod\)ing/\1en/g file 將mod做為模式1封裝在括號裡,然後替換。
sed 's/...$//' file 刪除每一行的最後三個字元。
sed 's/^...//' file 刪除每一行的頭三個字元。
7、sed 's#moding#moden#g' file 將moding替換為moden,s後面的#代表搜尋串和替換串之間的分界符。
8、sed -n '/101/,/105/p' file 顯示從101的匹配行到105的匹配行。如果只找到101的匹配行,則從101的匹配行到檔案末。
sed -n '2,/999/p' file 顯示從第2行到匹配行。
9、sed '/101/,/105/s/$/ 20050119/' file將從101的匹配行到105的匹配行的行末增加" 20050119"內容。
10、sed -e '1,3d' -e 's/moding/moden/g' file 先刪除檔案的1-3行,再進行替換。
sed -e '/^#/!d' file 顯示檔案以#開頭的行。
11、sed '/101/r newfile' file 在每個匹配行增加檔案newfile的內容
sed '/101/w newfile' file 把匹配行寫入newfile。
12、sed '/101/a\
> ###' file 在匹配行後增加一新行。
sed '/101/i\
> ###' file 在匹配行前增加一新行。
sed '/101/c\
> ###' file 用新行替換匹配行。
13、sed 'y/abcd/abcd/' file 將a、b、c、d分別替換為abcd。
14、sed '5q' file 顯示到第5行時退出。
15、sed '/101/' file 在檔案中找到匹配行的後一行(n)再進行替換。
sed '/101/' file 在檔案中找到第乙個匹配行後進行替換後再退出。
16、sed -e '/101/' -e '/104/' file 在檔案中找到與101匹配行後先存在乙個快取中,再放在與104匹配行後。
sed -e '/101/' -e '/104/' file 在檔案中找到與101匹配行後先存在乙個快取中,再替代104的匹配行。
sed -e '/101/h' -e '$g' file 將最後乙個匹配行放在檔案末。
sed -e '/101/h' -e '$g' file 將最後乙個匹配行替換檔案末行。
sed -e '/101/h' -e '/104/x' file 在檔案中找到與101匹配行後先存在乙個快取中,再與104的匹配行進行互換 。
17、sed -f sfile file 根據檔案sfile的命令列表進行操作。
cat sfile
/101/a\
####101####\
****101****
/104/c\
####104 deleted####\
****104 deleted****
1i\####test####\
****test****
sed 基礎語法
sed 常見的語法格式有兩中,一種為命令列模式,另一種為指令碼模式 sed options 處理動作 檔名2.1.1.常用選項 e 進行多次編輯 n 取消預設輸出,不自動列印模式空間 r 使用擴充套件正規表示式 i 修改原始檔 f 指定 sed 指令碼的檔名 注意 2.1.2.常見動作 注意 動作必...
sed基礎用法
用法 sed option 位址命令 檔案 常用選項 n 不列印模式空間的內容到螢幕上 預設是列印的 e 多點編輯 sed optin e e f path script file 從指定檔案中讀取編輯指令碼 r 支援使用擴充套件正規表示式 i.bak 備份檔案並原處編輯 位址範圍 不給位址 對全文...
sed 用法總結
sed n 1,3 p filename 列印1 3 行sed n if fi p filename 列印字元if和 fi之間的內容 sed e 1996 d filename 刪除除了含有 1996 的所有行 sed e y abc abc filename 把小寫的 abc轉換成大寫的 abc ...