Crontabs of all users
Sometimes it can be helpful to list the crontabs of all users. Eg. to find out why your server periodically has a load of over 80%...
for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done
Now you can search all crontabs that are done on the time of your load peak.

Kommentar hinzufügen