Showing posts with label all cron. Show all posts
Showing posts with label all cron. Show all posts

Thursday, May 10, 2012

List all Cron Jobs From All Users

To list all cron entries from all users:
# for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done
This is meant to be run as root.