You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
313 B
Bash
9 lines
313 B
Bash
#!/bin/sh
|
|
|
|
# once every 15 mins
|
|
*/15 * * * * cd /script/data && /usr/bin/Rscript --save --restore ../get-counts.R > get-counts.log 2>&1
|
|
|
|
# mondays, 12:02
|
|
#(may not run simultanously, to avoid override of .RData save)
|
|
2 12 * * 1 cd /script/data && /usr/bin/Rscript --save --restore ../get-boxes.R > get-boxes.log
|