task_runnow | R Documentation |
Immediately run a specific task available in the Windows task scheduler.
task_runnow(taskname)
taskname |
the name of the task to run. See the example. |
the system call to schtasks /Run
## Not run: myscript <- quote(print(Sys.time())) task_create( taskname = "myfancyscript", rscript = myscript, schedule = "ONCE", starttime = format(Sys.time() + 10 * 60, "%H:%M") ) task_runnow("myfancyscript") ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.