自动按日期压缩日志

xz 加 -k 参数可以保留源文件
-mtime 为N天之前修改的文件

find *.log -mtime +1 | xargs -t -r -Ifile xz -z file

你可能感兴趣的:(自动按日期压缩日志)