how to check cron jobs for all users in linux code example
Example: list cron jobs for all users
for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done
for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done