1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 20:46:00 +02:00

Added format of crontab file

This commit is contained in:
Kostyantyn Moroz 2016-03-14 19:25:51 +00:00 committed by Agniva De Sarker
parent 82c2fc4ff5
commit ace09a9c9b

View file

@ -13,3 +13,16 @@
- Remove all cron jobs for the current user:
`crontab -r`
- Configuration file:
```
# ┌───────────── min (0 - 59)
# │ ┌────────────── hour (0 - 23)
# │ │ ┌─────────────── day of month (1 - 31)
# │ │ │ ┌──────────────── month (1 - 12)
# │ │ │ │ ┌───────────────── day of week (0 - 6) (0 to 6 are Sunday to Saturday, or use names; 7 is Sunday, the same as 0)
# │ │ │ │ │
# │ │ │ │ │
# * * * * * command to execute
```