Daily Shaarli

All links of one day in a single page.

February 10, 2016

unix - How do I list all cron jobs for all users? - Stack Overflow
thumbnail

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