Answers for "list cron jobs linux"

0

list cronjobs linux

crontab -l
Posted by: Guest on August-03-2021
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