Listing cron jobs
To view Root’s Cron Jobs
crontab -lView a User’s Cron Jobs
crontab -u username -lView /etc/crontab
less /etc/crontabView Hourly / Daily / Weekly / Monthly Cron Jobs
View all the daily cron jobs:
ls -la /etc/cron.daily/
View a specific daily cron job:
less /etc/cron.daily/filename
Example with file name logrotate:
less /etc/cron.daily/logrotate
Last updated