gunzip -r hongchangfirst/data
如何递归删除那些剩余的非log结尾的文件?
先列出确认一下:
find hongchangfirst/data -type f ! -name "*.log"
然后真正的删除:
find hongchangfirst/data -type f ! -name "*.log" -exec rm -f {} \;
记住后边-exec一定要加空格,否则会出现find: missing argument to `-exec'错误。
如何把一个文件夹下的所有文件的内容都合并到一个大文件中?
find 04 -type f -name "wire.log.*" | xargs cat > ../all_logs