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

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

文件示例:

logs

|- module1

            |- 1.log

|- module2

             | - 2. log

Shell脚本:

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

你可能感兴趣的:(Shell脚本:多目录下多文档合并到一个文档)