List all cron jobs by crontab in UBUNTU

Command line:

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