List Crontab entries for all users

I just found this and this can be very useful; This one liner right here lists every user in a linux machine and shows what its crontab has.

for user in $(cut -f1 -d: /etc/passwd); do echo $user; crontab -u $user -l; done

el_avena off