-
Notifications
You must be signed in to change notification settings - Fork 275
Cron jobs
Paul Philippov edited this page Jun 2, 2024
·
1 revision
cron is a job scheduler that runs predefined commands at a preset time.
To edit the list of cron jobs, run crontab -e in console.
# .---------------- minute
# | .------------- hour
# | | .---------- day
# | | | .------- month
# | | | | .---- day of week (0-7 or sun,mon,tue,wed,thu,fri,sat)
# | | | | | command
#
# * * * * * /path/to/script -foo -bar
Each job is defined as a line of parameters where
-
minute is a number from
0to59, or a period (e.g.*/10for every 10 minutes). -
hour is a humber from
0to23. -
day is the day of the month, a number from
1to31. -
month is a number from
1to12, or a three-letter abbreviation:jan,feb,mar,apr,may,jun,jul,aug,sep,nov,dec. -
day of week is a number from
0(for Sunday) to7(for Sunday again). - command is a path to the script to be executed, with optional arguments.
- Wiki Home
- About the Project
- Getting Started
-
Supported Cameras
- Cameras
- 360 AP1PA3
- AliExpress LTIA‐37FJZ (Vanhua Z55 module)
- AOQEE C1
- Aosu C5L
- Cinnado
- Dekco DC5L
- Eufy
- Galayou/Wansview
- Hualai (Wyze/Atom/Neos/Personal)
- iFlytek XFP301‐M
- Jienuo JN-107-AR-E-WIFI
- Jooan A6M
- LaView L2
- LongPlus X07
- LSC 3215672
- Sannce I21AG
- Sonoff Cam‐S2 and B1P
- TP-Link Tapo C100/C110/C111
- Wuuk Y0510
- Xiaomi
- Configuration
- Integration
- Development