Skip to content

Instantly share code, notes, and snippets.

@kitwalker12
Created August 3, 2016 00:08
Show Gist options
  • Save kitwalker12/1e97e7ded97742f39cf0728df8ca83c3 to your computer and use it in GitHub Desktop.
Save kitwalker12/1e97e7ded97742f39cf0728df8ca83c3 to your computer and use it in GitHub Desktop.
See crontabs for all users on linux (ubuntu)
for user in $(getent passwd | cut -f1 -d: ); do echo $user; crontab -u $user -l; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment