Cron jobs let you run commands automatically on your Raspberry Pi at set times. You write a schedule line with five parts: minute, hour, day, month, and weekday. For example, '*/1 * * * *' means every minute. You save this line in the crontab file. The cron daemon reads this schedule and waits. When the current time matches the schedule, cron runs your command or script in the background. This repeats as scheduled. The execution table shows the task running every minute from 12:00 to 12:20. Variables like current time and run count update each minute. Beginners often wonder why the task runs repeatedly; it's because of the '*/1' minute setting. If the script runs longer than a minute, cron still starts new runs on time, so scripts should be quick or handle overlaps. Changing the schedule changes how often the task runs. Cron is a simple but powerful way to automate tasks on your Pi.