-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrontab.example
22 lines (16 loc) · 931 Bytes
/
crontab.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Run Date Stamp if rebooted
@reboot /home/pi/date-stamp/launcher.sh >/home/pi/logs/cronlog.log 2>&1
# Run Year Progress once at 5:30am
30 05 * * * /home/pi/year-progress/launcher.sh >/home/pi/logs/cronlog.log 2>&1
# Run Date Stamp once at 1pm
00 13 * * * /home/pi/date-stamp/launcher.sh >/home/pi/logs/cronlog.log 2>&1
# Run Eraser once at 10:30pm
30 22 * * * /home/pi/eraser/launcher.sh >/home/pi/logs/cronlog.log 2>&1
# Templates
# At minute 0 past every hour from 12am through 10am:
# 0 00-10 * * * /home/pi/app-name/launcher.sh >/home/pi/logs/cronlog.log 2>&1
# Every 30th minute past every hour from 8pm through 11pm:
# */30 20-23 * * * /home/pi/app-name/launcher.sh >/home/pi/logs/cronlog.log 2>&1
# Every 30th minute past every hour from 8pm through 8am:
# */30 20-23 * * * /home/pi/app-name/launcher.sh >/home/pi/logs/cronlog.log 2>&1
# */30 00-08 * * * /home/pi/app-name/launcher.sh >/home/pi/logs/cronlog.log 2>&1