Skip to content

Instantly share code, notes, and snippets.

@myadzel
Created January 11, 2014 21:55
Show Gist options
  • Save myadzel/8377467 to your computer and use it in GitHub Desktop.
Save myadzel/8377467 to your computer and use it in GitHub Desktop.
List of crontab tasks for all users
#!/bin/sh
for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment