【Shell】sed

1、文本替換shell

sed 's/old text/new text/' [file]    ===> 只會替換第一行,會把替換結果輸出到console
sed 's/old text/new text/g' [file]    ===> 替換所有內容,會把替換結果輸出到console


sed -i 's/old text/new text/' [file]  ====> 直接修改文件


2、刪除code

相關文章
相關標籤/搜索