常用選項: -i #直接修改目標文件內容. -n #取消預設輸出. 實例: #刪除 sed -i '/content/d' temp.txt #刪除中temp.txt匹配content內容的行. sed -i '/^$/d' temp.txt #刪除文件中所有空行. sed -i 'nd' temp ...
常用選項:
-i #直接修改目標文件內容.
-n #取消預設輸出.
實例:
#刪除
sed -i '/content/d' temp.txt #刪除中temp.txt匹配content內容的行.
sed -i '/^$/d' temp.txt #刪除文件中所有空行.
sed -i 'nd' temp.txt #刪除文件中第n行.
echo 12 ddd 12d | tr ' ' '\n' | sed '/[^0-9,^.]/d' #刪除包含非數字與.的行,[]為正則表達的匹配,[^]為匹配取反.
#