# 删除old_logs目录中的文件 rm -r /path/to/old_logs/* ``` 然后,我们可以使用crontab来安排定时执行这个脚本。在crontab文件中添加以下内容: ```shell 0 3 * * * /bin/bash /path/to/delete_old_files.sh ``` 这行代码的意思是,在每天的凌晨3点执行“delete_old_files.sh”脚本。通过这种方式,我...
$ crontab -l # (crondave installed on Tue May 4 13:07:43 1999) # DT:ech the date to the console every 30 minites 0,15,30,45 18-06 * * * /bin/echo `date` > /dev/tty1 # DT:delete core files,at 3.30am on 1,7,14,21,26,26 days of each month 30 3 1,7,14,21,26 ...
# DT:ech the date to the console every 30 minites 0,15,30,45 18-06 * * * /bin/echo `date` > /dev/tty1 # DT:delete core files,at 3.30am on 1,7,14,21,26,26 days of each month 30 3 1,7,14,21,26 * * /bin/find -name "core' -exec rm {} \; 4). 删除crontab文件 ...
# DT:delete core files,at 3.30am on 1,7,14,21,26,26 days of each month 30 3 1,7,14,21,26 * * /bin/find -name "core' -exec rm {} /; 4). 删除crontab文件 要删除crontab文件,可以用: 复制代码 代码如下: $ crontab -r 5). 恢复丢失的crontab文件...
#DT:delete core files,at 3.30am on 1,7,14,21,26,26 days of each month 30 3 1,7,14,21,26 * * /bin/find -name “core’ -exec rm {} ; 4). 删除crontab文件 要删除crontab文件,可以用: $ crontab -r 5). 恢复丢失的crontab文件 ...
我正在尝试使用cron job每分钟删除一些文件。所以我为要删除的创建了一个文本文件。下面是我有的txt文件remove.txt文件rm -vrf /desktop/files/*/out* 在这里,我试图漫游文件中的所有文件夹,并删除文件,包含的文件夹。在crontab</e 浏览17提问于2020-10-18得票数 0 ...
# DT:delete core files,at 3.30am on 1,7,14,21,26,26 days of each month30 3 1,7,14,21,26 * * /bin/find -name "core' -exec rm {} \; 4). 删除crontab文件要删除crontab文件,可以用:复制代码代码如下:$ crontab -r 5). 恢复丢失的crontab文件如果不小心误删了crontab文件,假设你在自己...
# DT:delete core files,at 3.30am on 1,7,14,21,26,26 days of each month 30 3 1,7,14,21,26 * * /bin/find -name "core' -exec rm {} \; 现在保存并退出。最好在crontab文件的每一个条目之上加入一条注释,这样就可以知道它的功能、运行时间,更为重要的是,知道这是哪位用户的作业。
# DT:ech the date to the console every 30 minites 0,15,30,45 18-06 * * * /bin/echo `date` > /dev/tty1 # DT:delete core files,at 3.30am on 1,7,14,21,26,26 days of each month 30 3 1,7,14,21,26 * * /bin/find -name “core’ -exec rm {} \; ...