-
Notifications
You must be signed in to change notification settings - Fork 3
/
crontab
22 lines (20 loc) · 1.25 KB
/
crontab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# el capitan makes crontab really hard.
# http://stackoverflow.com/questions/32781884/is-crontab-broken-on-osx-el-capitan
#
# env EDITOR=nano crontab -e
#
# see cron/ folder
# chmod +x *.sh
#=====================================================================#
# General #
#=====================================================================#
# Min | Hour | Mday | Month | Wday | Command #
#=====================================================================#
# * * * * * $HOME/bin/gmail.rb
0 3 * * * $HOME/code/dotfiles/cron/daily-nighttime.sh > /dev/null 2>&1
0 * * * * $HOME/code/dotfiles/cron/compile-chrome.sh
0 * * * * $HOME/code/dotfiles/cron/every-hour.sh > /dev/null 2>&1
0 0 * * 0 $HOME/code/dotfiles/cron/twice-a-week.sh > /dev/null 2>&1
0 0 * * 4 $HOME/code/dotfiles/cron/twice-a-week.sh > /dev/null 2>&1
# */15 * * * * $HOME/bin/temp-help.sh
#=====================================================================#