snippets.txt 754 B

1234567891011121314151617181920
  1. # ┌───────────── minute (0 - 59)
  2. # │ ┌───────────── hour (0 - 23)
  3. # │ │ ┌───────────── day of month (1 - 31)
  4. # │ │ │ ┌───────────── month (1 - 12)
  5. # │ │ │ │ ┌───────────── day of week (0 - 6) (Sunday to Saturday;
  6. # │ │ │ │ │ 7 is also Sunday on some systems)
  7. # │ │ │ │ │
  8. # │ │ │ │ │
  9. # * * * * * command_to_execute
  10. ###### Sample crontab ######
  11. # Empty temp folder every Friday at 5pm
  12. 0 5 * * 5 rm -rf /tmp/*
  13. # Backup images to Google Drive every night at midnight
  14. 0 0 * * * rsync -a ~/Pictures/ ~/Google\ Drive/Pictures/