参考链接: https://www.youtube.com/watch?v=nXLnx8ncZyE
sed命令
sed据我了解是linux中用于替换的一个命令。
使用方法
仅替换第一次出现的:
1# 把a.txt中的 abc 换成 def 并打印出来。
2sed 's/abc/def/' a.txt
3
4# 把a.txt中的 abc 换成 def ,替换到源文件内
5sed -i 's/abc/def/' a.txt
6
7# 使用/之外的分隔符也可以搜索,只要你把分隔符放在s后面,比如这里用英文点号
8sed -i 's.abc.def.' a.txt
替换所有出现的:
1# 把a.txt中的 abc 换成 def 并打印出来。
2sed 's/abc/def/g' a.txt