Mercurial > repos > greg > r_hello_world
view hello_world.R @ 1:65fb665f37e3 draft
Uploaded
author | greg |
---|---|
date | Mon, 15 Aug 2016 13:56:03 -0400 |
parents | 304377330941 |
children | fa71365e68b6 |
line wrap: on
line source
#!/usr/bin/env Rscript suppressPackageStartupMessages(library("optparse")) option_list <- list( make_option(c("-o", "--output"), action="store", help="Output dataset") ) base::save("Hello world!", file=opt$output)