替換檔案中的字串
sed -i s/"what to replace"/"with what to replace"/g $file
我們使用 -i
在 $file
檔案上選擇就地編輯。在某些系統中,需要在 -i
標誌後新增字尾,該標誌將用於建立原始檔案的備份。你可以新增像 -i ''
這樣的空字串以省略備份建立。請檢視本主題中關於 -i
選項的備註。
g
終結器意味著在每一行中進行全域性查詢/替換。
$ cat example
one
two
three
total
$ sed -i s/"t"/"g"/g example
$ cat example
one
gwo
ghree
gogal