> shell编程 >

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

合并一个文件夹下多个文件内容:
 

复制代码代码如下:
find -name "*.log" -exec 'cat' {} \; > test.tmp
 
(责任编辑:IT)