美文网首页技术日常
linux19~目录下文件批量字符串替换

linux19~目录下文件批量字符串替换

作者: 摹喵居士 | 来源:发表于2019-08-12 10:57 被阅读0次

    2019.08.12

    遍历目录文件,对特定字符串批量替换

    
    find . -type f -name "*.txt"|xargs -i sed -i 's/222/ffff/g' {}
    
    
    

    相关文章

      网友评论

        本文标题:linux19~目录下文件批量字符串替换

        本文链接:https://www.haomeiwen.com/subject/zrmyjctx.html