#!/usr/bin/env Rscript
args <- commandArgs(trailingOnly = TRUE)
txt <- "ola mundo!\n"
if (length(args) > 1) {
txt <- paste0(txt, readr::read_lines(args[2], n_max = 1), "\n")
}
cat(txt, file = args[1])
Sys.sleep(1000)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.