只需要在R脚本首行,加入下图中的代码即可:
R --no-save <mergefiles.r
nohup R [options] [<infile] [>outfile]
nohup 后台运行程序
options:
--version 查看R版本;
--slave 只打印R脚本的输出,而不显示脚本具体执行情况;
--vanilla是 --no-save, --no-restore, --no-site-file, --no-init-file 和 --no-environ的综合;
--args 后面是需要传递的参数。
注意:options必须选择--save,--no-save, --vanilla三个中的一个。
比如编辑一个mergefiles.r文件如下:
R --slave --vanilla <mergefiles.r
合并用cat file1 file2 >file_merged啊。。。。为什么要用vim....vim也可以的,先vi打开文件1,然后光标移到你要插入文件2的地方(合并就是移到文件尾并新建一行),敲
:r /path/to/the/file/you/want/to/merge
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)