Skip to content

Instantly share code, notes, and snippets.

@Clivern
Created December 14, 2019 18:11
Show Gist options
  • Save Clivern/1819e4cea9e87dde795e226a87128926 to your computer and use it in GitHub Desktop.
Save Clivern/1819e4cea9e87dde795e226a87128926 to your computer and use it in GitHub Desktop.
cron jobs
  • cron is a time based job scheduling service.
  • crontab a program for CRUD your jobs schedules.
  • use cron to schedule & automate tasks

image

0 2 * * * /root/db_backup > /tmp/db.log 2>&1
$ crontab file -> Install a new crontab from a file
$ crontab -l -> List your cron jobs
$ crontab -e -> Edit your cron jobs
$ crontab -r -> Remove all of your cron jobs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment