标签:ctrl+v color style bsp 常用 hello ctrl class col
sed ‘1c hello‘ test #将第一行替换为hello
sed ‘s/^str1.*/str2/‘ filename #以str1开头 sed ‘s/.*str1$/str2/‘ filename #以str1结尾 sed ‘s/.*str1.*/str2/‘ filename #含有str1
sed ‘/xhn/s/str1/str2/g’ test
hello
world
sed ‘1,5c hello\nworld‘ test
sed ‘/^ *$/d‘ test #只能删除没有特殊字符的空行 sed ‘/[[:space:]]*/d‘ test #可删除特殊字符 特别需要说明一下,linux中的^M是ctrl+v和ctrl+m打出来的
标签:ctrl+v color style bsp 常用 hello ctrl class col
原文地址:https://www.cnblogs.com/xhnxhnu/p/9408704.html