Listing cron jobs

To view Root’s Cron Jobs

crontab -l

View a User’s Cron Jobs

crontab -u username -l

View /etc/crontab

less /etc/crontab

View 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