Writing Correct Crontab Entries for Linux
Linux crontab uses the standard 5-field format plus a command: * * * * * /path/to/command. Key tips: use absolute paths for commands (cron doesn't inherit your shell PATH), redirect output to avoid email spam (>/dev/null 2>&1), and use crontab -l to list existing entries and crontab -e to edit. System cron (/etc/cron.d/) adds a 6th field for the user who runs the command.