美文网首页
Shell脚本:多目录下多文档合并到一个文档

Shell脚本:多目录下多文档合并到一个文档

作者: 杰客大叔 | 来源:发表于2019-04-09 23:13 被阅读0次

    应用场景: 多文件中数据合并到统一文件, 如将logs下各模块对应的log文件合并到一个target.log文件中

    文件示例:

    logs

    |- module1

                |- 1.log

    |- module2

                 | - 2. log

    Shell脚本:

    cat $(find logs/ -name "*.log") > target.log

    相关文章

      网友评论

          本文标题:Shell脚本:多目录下多文档合并到一个文档

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