Sunday, March 2, 2014

List cron job for all user in cent os

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