Answers for "view all cron jobs"

0

check active cron jobs linux

systemctl status cron
----------OR---------------
crontab -l
Posted by: Guest on September-22-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

Browse Popular Code Answers by Language