for user in $(cut -f1 -d: /etc/passwd); do printf " \n\n -------- $user : \n "; crontab -u $user -l; done Crontab cronjob Neuen Kommentar schreiben Comments Alternative (without warnings like "no crontab for user") Mi, 10/22/2025 - 12:17 Alternative (without warnings like "no crontab for dovecot") to see all tasks: for user in $(cut -f1 -d: /etc/passwd); do printf "\n\n\n$user\n"; crontab -u $user -l 2>/dev/null; done Antworten Neuen Kommentar schreiben Ihr Name Betreff Comment Hilfe zum Textformat CAPTCHA This question is for testing whether or not you are a human visitor and to prevent automated spam submissions. Leave this field blank
Alternative (without warnings like "no crontab for user") Mi, 10/22/2025 - 12:17 Alternative (without warnings like "no crontab for dovecot") to see all tasks: for user in $(cut -f1 -d: /etc/passwd); do printf "\n\n\n$user\n"; crontab -u $user -l 2>/dev/null; done Antworten
Comments
Alternative (without warnings like "no crontab for user") Mi, 10/22/2025 - 12:17
Alternative (without warnings like "no crontab for dovecot") to see all tasks:
for user in $(cut -f1 -d: /etc/passwd); do printf "\n\n\n$user\n"; crontab -u $user -l 2>/dev/null; done
Neuen Kommentar schreiben