1 Rscript

  1. Rscript test.R
  2. Rscript test.R arg1 arg2
  3. Rscript test.R -i infile.txt -o out.png

2 Rscript解释器

  1. vi test.R
  2. #!/usr/bin/env Rscript
  3. ...
  4. chmod 755 test.R
  5. ./test.R ...

3 stdin

R的安装目录拷贝到新环境中时,Rscript可能会无法使用(编译时会有一些绝对路径) 但R是可以使用的

  1. cat test.R | R --slave
  2. cat test.R | R --slave --args -i infile.txt -o out.png

—slave