Update cheatsheets

This commit is contained in:
ivuorinen
2025-12-06 00:20:13 +00:00
parent fc43dd50ef
commit 10dbf8b0c0
4 changed files with 44 additions and 11 deletions

View File

@@ -28,14 +28,14 @@ source: https://github.com/tldr-pages/tldr.git
`crontab -r`
- Sample job which runs at 10:00 every day (* means any value):
- Sample cron job which runs at 10:00 every day (* means any value):
`0 10 * * * {{command_to_execute}}`
- Sample crontab entry, which runs a command every 10 minutes:
- Sample cron job which runs a command every 10 minutes:
`*/10 * * * * {{command_to_execute}}`
- Sample crontab entry, which runs a certain script at 02:30 every Friday:
- Sample cron job which runs a certain script at 02:30 every Friday:
`30 2 * * Fri /{{path/to/script.sh}}`