So I realize it’s still called by “cron” although it’s not in “crontab -e”. Google and find this post. Then I found the “/etc/crontab” has the following content:
1 2 3 4 5 6 7 8 9
SHELL=/bin/sh PATH=/usr/bin:/usr/sbin:/sbin:/bin:/usr/lib/news/bin MAILTO=root # # check scripts in cron.hourly, cron.daily, cron.weekly, and cron.monthly # -*/15 * * * * root test -x /usr/lib/cron/run-crons && /usr/lib/cron/run-crons >/dev/null 2>&1 0 5 * * * root test -x /usr/sbin/anacron || ( cd / && /root/work/scripts/testlinkBackup.sh ) 0 18 * * * root test -x /usr/sbin/anacron || ( cd / && /root/work/scripts/testlinkBackup.sh )
So that’s it. And more, here is the differences between “crontab -e” and “/etc/crontab”.