sed命令應用

2021-08-14 17:47:15 字數 761 閱讀 6005

一 簡介

sed是stream edit。

二 用法

//d:delete

//-i:操作文件

sed -i "1d" demo.txt //刪除第一行

sed -i "$d" demo.txt //刪除最後一行

sed -i "1,$d" demo.txt //刪除所有行

//p:print

sed -n '1p' demo.txt //顯示第一行

sed -n '1,3p' demo.txt //顯示前3行

sed -n '/how/p' demo.txt //顯示含how的行

sed -i '$afour' demo.txt //在最後一行追加內容four

//在某處前插入一行

sed -i '1ifirst' demo.txt //在第一行之前插入first

sed -i '1i\ first' demo.txt //在行首帶空格插入,需要\

sed -i '1ihello world' demo.txt //在行中插入空格,不需要\

//cover 覆蓋

sed -i '1chow are you' demo.txt //使用how are you 替換第一行

sed -i '1,3ctomas' demo.txt //前三行使用tomas替換掉

sed應用要點

sed使用方式 sed f myscript.sed input file sed some sed commands input file myoutfile 基本sed編輯命令 p 列印匹配行 顯示檔案行號 a 在定位行號後附加新文字資訊 i 在定位行號前插入新文字資訊 d 刪除定位行 c 用新...

sed應用舉例

1,sed 3d test.txt 把test.txt中的第三行刪除 2,sed 3a hello world test.txt 在test.txt的第三行後面新增 hello world 這一行 3,sed 3i hello world test.txt 在test.txt的第三行前面面新增 he...

sed原理及sed命令格式

4.1 sed工作原理 sed是乙個非互動式的流編輯器。所謂非互動式,是指使用sed只能在命令列下輸入編輯命令來編輯文字,然後在螢幕上檢視輸出 而所謂流編輯器,是指sed每次只從檔案 或輸入 讀入一行,然後對該行進行指定的處理,並將結果輸出到螢幕 除非取消了螢幕輸出又沒有顯式地使用列印命令 接著讀入...