一、sh脚本如下:
#!/bin/sh location="/home/sharedir/" find $location -mtime +30 -type f |xargs rm -f
保存命名为del.sh
另外两种查找相关文件的方法如下:
1)find /home/sharedir/
-mtime +30 -type f -name *.gz
2)find /home/sharedir/ -mtime +30 -type f |xargs
二、使用crontab -e 定时启动del.sh脚本
*/10 * * * * /bin/sh /home//del.sh
1) crontab -l 显示你的crontab文件
2)crontab -e // 编辑你的crontab文件,如果不存在,则创建一个新的crontab文件
时间: 2024-11-05 12:33:40