This commit is contained in:
root
2024-01-27 07:49:05 +12:00
commit d45048e439
17 changed files with 435 additions and 0 deletions

28
docs/progs/crontab.md Normal file
View File

@@ -0,0 +1,28 @@
# Crontab
```
# PATH=$PATH:/usr/local/bin
# LANG=
# LC_ALL=
### on reboot
# @reboot command
### on time
# * * * * * command
### | | | | |
### | | | | |
### | | | | |
### | | | | |--| 0-7 день недели
### | | | | |
### | | | |----| 1-12 месяц
### | | | |
### | | |------| 1-31 день месяца
### | | |
### | |--------| 0-23 часы
### | |
### |----------| 0-59 минуты
```