美文网首页linux
2019-11-15 linux的替换:sed -i "s/查找

2019-11-15 linux的替换:sed -i "s/查找

作者: Shalom小白 | 来源:发表于2019-11-15 16:22 被阅读0次

    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