Nothing
# rbind_csvs_to_RDS.R
options(warn=-1)
args = commandArgs(trailingOnly=TRUE)
stopifnot(length(args)>1)
oname = args[1]
files = args[-1]
fl = lapply(files, read.csv, stringsAsFactors=FALSE)
ans = do.call(rbind, fl)
saveRDS(ans, file=oname)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.