args = commandArgs(trailingOnly = TRUE)
what <- args[1]
if (what == "q") {
print("Quitting")
q(status = 12)
} else if (what == "s") {
stop("I am stopping")
}else if (what == "run") {
print("hello")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.