LINUX定时压缩前天的目录,完事后删除原目录
增加定时任务,每天凌晨1点执行
vi /etc/crontab
0 1 * * * root /bin/bash /root/xxx/xxx/xxx.sh
脚本内容(xxx.sh):
#!/bin/bash
yesday=$(date -d "2 day ago" +%Y%m%d)
cd /root/xxx/xxx
if [ -d $yesday ]; then
echo "目录存在,开始压缩"
zip -r $yesday.zip $yesday
echo "压缩完成,删除原目录"
rm -rf $yesday
else
echo "目录不存在"
fi
给脚本加上执行权限:
chmod +x xxx.sh