Created
August 3, 2016 00:08
-
-
Save kitwalker12/1e97e7ded97742f39cf0728df8ca83c3 to your computer and use it in GitHub Desktop.
See crontabs for all users on linux (ubuntu)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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