How to Display crons on all users - Linux - Ubuntu












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

Comments