Automating Tasks with Cron Jobs
Learn how to automate tasks using cron jobs on Linux.
- Edit crontab:
crontab -e
- Add a daily backup job:
0 2 * * * /path/to/backup.sh
- List current jobs:
crontab -l
- Remove all jobs:
crontab -r
Read more: Cron Documentation