sed -i "s/查找字段/替换字段/g"
例如:test.txt包括:
a;b
c;d
使用命令把;替换成换行符:
sed -i "s/;/\\n/g" test.txt
而后,test.txt变为:
a
b
c
d
sed -i "s/查找字段/替换字段/g"
例如:test.txt包括:
a;b
c;d
使用命令把;替换成换行符:
sed -i "s/;/\\n/g" test.txt
而后,test.txt变为:
a
b
c
d
本文标题:2019-11-15 linux的替换:sed -i "s/查找
本文链接:https://www.haomeiwen.com/subject/tcesictx.html
网友评论