脚本
#!/bin/bash
# **********************************************************
# * Author : hongk
# * Email : 2608781325@qq.com
# * Create time : 2023-02-03 14:51
# * Filename : compress.sh
# * Description :
# **********************************************************
workDir=/var/log
fileName=messages
[ ! -e $logPath ] && mkdir $logPath
cd $workDir
tar -zcf $fileName`date +%Y%m%d%H%M%S`.tar.gz $fileName
计划任务
]# crontab -e
]# crontab -l
59 23 * * * bash /opt/scripts/compress.sh