crontab
Crontab refers to the tables used by the cron daemon to schedule automated commands on Unix-like systems. Each user can have a personal crontab, and a system-wide configuration may reside in /etc/crontab and in files under /etc/cron.d. The cron daemon (often named crond) reads these schedules and executes the specified commands at the requested times.
Each line in a user crontab defines a job with five time fields followed by a command:
Administrative commands include crontab -e to edit the current user’s crontab, crontab -l to list entries, and
Environment in cron is typically limited; PATH and other variables may be minimal. It is common practice
Examples: 0 2 * * * /usr/local/bin/backup.sh runs daily at 2 a.m.; */15 * * * * /usr/bin/cleanup --all can run every 15
---