Skip to content

Instantly share code, notes, and snippets.

@anytizer
Created October 19, 2013 14:28
Show Gist options
  • Save anytizer/7056630 to your computer and use it in GitHub Desktop.
Save anytizer/7056630 to your computer and use it in GitHub Desktop.
List out cron jobs for all users
for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done
Details:
http://stackoverflow.com/questions/134906/how-do-i-list-all-cron-jobs-for-all-users
http://www.linux-faqs.info/bash/list-all-cron-jobs-for-all-users
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment