使用linux和shell编程,每天12点钟删除某个文件夹(假设为abc)里24小时之前生成的文件(要判断文件存在不)
1个回答
展开全部
1、vi /home/t.sh
#!/bin/bash
dst_dir=/abc
if [ -e a.txt ];then
find $dst_dir -type f -mtime +1 -exec rm -rf {} \;
fi
exit 0;
2、在/etc/bashrc增加
export EDITOR=vi
3、重新登录
crontab -e增加
0 12 * * * /home/t.sh;
:wq保存退出即可。
4、如果不需要文件判断,直接crontab -e 增加
0 12 * * * find /abc -type f -mtime +1 -exec rm -rf {} \;
#!/bin/bash
dst_dir=/abc
if [ -e a.txt ];then
find $dst_dir -type f -mtime +1 -exec rm -rf {} \;
fi
exit 0;
2、在/etc/bashrc增加
export EDITOR=vi
3、重新登录
crontab -e增加
0 12 * * * /home/t.sh;
:wq保存退出即可。
4、如果不需要文件判断,直接crontab -e 增加
0 12 * * * find /abc -type f -mtime +1 -exec rm -rf {} \;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询