定时任务 $ ls /etc/cron* + cat$ for user in $(cat /etc/passwd | cut -f1 -d:); do crontab -l -u $user; done

Is there a cron job that runs too frequently? 

Are there any hidden user submits regular tasks? In the event of a failure, if there is just a backup task execution?

Guess you like

Origin www.cnblogs.com/fanweisheng/p/11110521.html