for user in $(getent passwd | cut -f1 -d: ); do echo $user; crontab -u $user -l; done
To manipulate the crons from shell (using user from the list)
crontab [-u user] [-l | -r | -e] [-i]
for user in $(getent passwd | cut -f1 -d: ); do echo $user; crontab -u $user -l; done
To manipulate the crons from shell (using user from the list)
crontab [-u user] [-l | -r | -e] [-i]