Answers for "linux check cron jobs history"

3

linux check cronjob log

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

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