定时任务状态

[appuser 的 crontab]
MAILTO=""
#root系统级定时任务如下,这里只是备忘
#1 8 * * 1 root /tmp/del_log.sh
#2 8 * * * root /tmp/post_fetch_tasks_cron_root.sh
#3 8 1 * * root /tmp/tasks_month.sh > /tmp/logs/tasks_month.log 2>&1

#appuser的定时任务如下:
0 0 * * 3 truncate -s 0 /tmp/seven.log > /tmp/logs/clear_log.log 2>&1
1 1 * * 1 /tmp/truncate_logs.sh
0 8 * * 1 /tmp/update_sh.sh > /tmp/logs/update_sh.log 2>&1
10 8 * * 1 /tmp/tasks_week.sh > /tmp/logs/tasks_week.log 2>&1
12 */8 * * * /tmp/hf_http_private.sh
13 */8 * * * /tmp/hf_http_public.sh
15 8 * * * /tmp/post_fetch_tasks_cron_appuser.sh
16 */4 * * * /tmp/txt_to_html.sh

[/etc/cron.d/root-cron]
MAILTO=""
#root系统级定时任务如下
1 8 * * 1 root /tmp/del_log.sh
2 8 * * * root /tmp/post_fetch_tasks_cron_root.sh
3 8 1 * * root /tmp/tasks_month.sh > /tmp/logs/tasks_month.log 2>&1

更新时间:2026-06-12 08:15:09