crontab: clarify and simplify job examples. (#2938)

italian
Marco Bonelli 2019-04-22 18:28:30 +02:00 committed by GitHub
parent 07fe98693d
commit d0677b83d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -15,14 +15,14 @@
`crontab -r`
- Sample job which runs at 10:00 every day. * means any value:
- Sample job which runs at 10:00 every day (* means any value):
`0 10 * * * {{path/to/script.sh}}`
`0 10 * * * {{command_to_execute}}`
- Sample job which runs every minute on the 3rd of April:
`* * 3 Apr * {{path/to/script.sh}}`
`* * 3 Apr * {{command_to_execute}}`
- Sample job which runs at 02:30 every Friday:
- Sample job which runs a certain script at 02:30 every Friday:
`30 2 * * Fri {{path/to/script.sh}}`
`30 2 * * Fri {{/absolute/path/to/script.sh}}`