Answers for "see crontab"

0

check active cron jobs linux

systemctl status cron
----------OR---------------
crontab -l
Posted by: Guest on September-22-2020
0

how to check crontab list

To list all scheduled cron jobs for the current user : crontab –l
To display contents of the root user’s crontab : less /etc/crontab
To list cron jobs that belong to a specific user : sudo crontab –u username –l
To list hourly cron jobs : ls –la /etc/cron.hourly
To list daily cron jobs : ls –la /etc/cron.daily
To display weekly cron jobs : ls –la /etc/cron.weekly
To display monthly cron jobs : ls –la /etc/cron.monthly
Posted by: Guest on May-21-2021

Browse Popular Code Answers by Language