替换文件中的字符串
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