cron_clear | R Documentation |
Clear all cron jobs
cron_clear(ask = TRUE, user = "")
ask |
Boolean; ask before removal? |
user |
The user whose crontab we are clearing. |
f <- system.file(package = "cronR", "extdata", "helloworld.R") cmd <- cron_rscript(f) cron_add(command = cmd, frequency = 'minutely', id = 'test1', description = 'My process 1') cron_add(command = cmd, frequency = 'daily', at="7AM", id = 'test2', description = 'My process 2') cron_njobs() cron_ls() cron_clear(ask=TRUE) cron_ls()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.