在linux系统中,服务器需要每周一的19:00执行该命令,#/home/worker/clean...
发布网友
发布时间:2024-10-02 19:39
我来回答
共3个回答
热心网友
时间:2024-10-27 18:25
楼主您好,该计划任务步骤如下:
1.crontab -e //进入计划任务编辑页面
2.* 19 * * 1 /home/worker/clean_log.sh //从左到右分别代表分 时 日 月 周
3.:wq保存退出
4.重启服务service crond restart
这样就能达到您的需求了。
热心网友
时间:2024-10-27 18:19
crontab -e
0 19 * * 1 /home/worker/clean_log.sh
解释:
man 5 crontab
The time and date fields are:
field allowed values
----- --------------
minute 0-59
hour 0-23
day of month 1-31
month 0-12 (or names, see below)
day of week 0-7 (0 or 7 is Sun, or use names)
热心网友
时间:2024-10-27 18:24
crontab -e
0 19 * * 1 /bin/bash /home/worker/clean_log.sh
热心网友
时间:2024-10-27 18:25
楼主您好,该计划任务步骤如下:
1.crontab -e //进入计划任务编辑页面
2.* 19 * * 1 /home/worker/clean_log.sh //从左到右分别代表分 时 日 月 周
3.:wq保存退出
4.重启服务service crond restart
这样就能达到您的需求了。
热心网友
时间:2024-10-27 18:25
crontab -e
0 19 * * 1 /home/worker/clean_log.sh
解释:
man 5 crontab
The time and date fields are:
field allowed values
----- --------------
minute 0-59
hour 0-23
day of month 1-31
month 0-12 (or names, see below)
day of week 0-7 (0 or 7 is Sun, or use names)
热心网友
时间:2024-10-27 18:20
crontab -e
0 19 * * 1 /bin/bash /home/worker/clean_log.sh