Sabrina 2019-12-19
https://blog.csdn.net/qq_37674858/article/details/80066264
2.2 使用sed命令对文件中的字符替换
例如:将aaaa字符串修改为bbbb
[ zxy]# sed -i ‘s|aaaa|bbbb|‘ file1
[ zxy]# cat file1
Good Luck
Hello World !
bbbb
转载于:https://www.cnblogs.com/gcgc/p/10281223.html