如何存储从R studio到Mac OS X的系统调用响应

时间:2018-01-20 05:43:48

标签: r macos system

不确定如何最好地问这个问题。我想在R studio Mac中存储系统命令的响应。

例如,这个命令:

system("pwd")

返回:

/Volumes/chart/chart

我想将返回值存储在这样的变量中:

result <- system("pwd")

但这不起作用。

1 个答案:

答案 0 :(得分:1)

使用intern参数。

result <- system('pwd', intern = T)
result
#> [1] "/Volumes/chart/chart"