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