9 lines
403 B
Plaintext
9 lines
403 B
Plaintext
# 公共定时任务
|
||
# 每小时0分执行,32G的不用加
|
||
0 * * * * /usr/bin/bash /home/pi/lot_manager/bash/cron_delete_mp4.sh
|
||
# 每天0:0分执行
|
||
0 0 * * * /usr/bin/python /home/pi/lot_manager/delete_lot_data_3_days.py
|
||
# 每天08:00分执行
|
||
0 8 * * * sudo /usr/bin/python /home/pi/lot_manager/open_led.py
|
||
# 每天18:00分执行
|
||
0 18 * * * sudo /usr/bin/python /home/pi/lot_manager/close_led.py |