2019-11-15 linux的替换:sed -i "s/查找
2019-11-15 本文已影响0人
Shalom小白
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