Or if you're root, just check the directory /var/spool/cron/tabs. In there should be a complete list of all user crons. There are also crons that run out of the /etc/cron* directories. Just run:
See this question on StackOverflow (How do I list all cron jobs for all users?). The short version is that you could run the following (@Kyle Burton's answer on that question):
for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done
There is also a more indepth script that you could copy and run on that post.
Or if you're root, just check the directory
/var/spool/cron/tabs
. In there should be a complete list of all user crons. There are also crons that run out of the/etc/cron*
directories. Just run:To see them all.
You could do something like this:
And remember to check the log file /var/log/cron or similar which will list everything that has been run by cron.
See this question on StackOverflow (How do I list all cron jobs for all users?). The short version is that you could run the following (@Kyle Burton's answer on that question):
for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done
There is also a more indepth script that you could copy and run on that post.