使用linux和shell编程,每天12点钟删除某个文件夹(假设为abc)里24小时之前生成的文件(要判断文件存在不)
发布网友
发布时间:2022-05-04 12:08
我来回答
共1个回答
热心网友
时间:2023-10-22 14:20
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 {} \;
热心网友
时间:2023-10-22 14:20
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 {} \;
热心网友
时间:2023-10-22 14:20
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 {} \;