Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- #List all cron jobs for all users
- for user in `cat /etc/passwd | cut -d":" -f1`;
- do
- crontab -l -u $user;
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement