合并一个文件夹下多个文件内容的单行shell命令

来自:网络
时间:2022-03-19
阅读:
合并一个文件夹下多个文件内容:

复制代码 代码如下:
find -name "*.log" -exec 'cat' {} \; > test.tmp
返回顶部
顶部