One-Liners
#Handy One-Liners
This page is a collection of random one-liners I’ve used and wanted to keep track of.
list contents of all crontabs
for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done
#Handy One-Liners
This page is a collection of random one-liners I’ve used and wanted to keep track of.
for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done