代码改变世界

查看所有定时任务

2021-01-21 18:53  丨o聽乄雨o丨  阅读(802)  评论(0编辑  收藏  举报

查看各个用户有没有crontab定时任务:

1 for u in `cat /etc/shadow | cut -d":" -f1`;do crontab -l -u $u;done

 查看月/周/日定时任务文件夹:

1 ls /etc/cron.monthly
2 ls /etc/cron.weekly
3 ls /etc/cron.daily
4 ls /etc/cron.hourly

使用crontab查看当前用户:

1 crontab -l

 查看crond定时任务:

1 ls /var/spool/cron