A Java developer's place to write down things that were somewhat obscure or difficult to piece together, that were worth remembering and writing run-on sentences about.
title
fire chief's random developer tidbits
Wednesday, April 11, 2012
List all users crontabs in Linux
Listing all users crontabs:
cut -d: -f1 /etc/passwd | xargs -I {} sudo crontab -u {} -l | less
No comments:
Post a Comment