标签: linux r
如果我运行的R脚本包含类似于:
x<-system("ls -t -r | tail -n 1") ,
如果命令正确执行,则x为0,如果有错误,则为0。 如何在执行脚本的同时保存R中终端的输出?
答案 0 :(得分:7)
将intern属性设置为true。
intern
x<-system("ls -t -r | tail -n 1", intern=TRUE)