Answers for "linux show cron for user"

5

linux check cronjob log

grep CRON /var/log/syslog
Posted by: Guest on August-04-2020
1

list cron jobs for all users

for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done
Posted by: Guest on April-23-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language