I wanted to run with crontab
(the system daemon used to execute desired tasks at certain times) a shiny script.
I first tried running sh Autorun.sh
, being in the file:
R
shiny::runApp(...)
but that didn't work
I also tried writting directly Rscript shiny::runApp(...)
but it also doesn't work
Any ideas?
R -e 'shiny::runApp(...)'
. You might need to switch quotes if you're using any insiderunApp()
.