无法从 R 调用 cygwin 命令
我正在 windows box 中工作,并使用 cygwin 来模仿 unix shell。我还有 R 并且想从中运行任何系统命令。我相信 system('command')
可以做到这一点,但它不适用于每个 'command'
。例如 system('ls')
返回 /cygdrive/c/cygwin/bin/ls: write error: Bad file detector
我认为这是因为 R 调用 <代码>ls >& - 也返回相同的错误。那么如何解决这个问题呢?
I'm working in windows box, and using cygwin to imitate unix shell. Also I have R and want to run any system comand from it. I believe that system('command')
would do this, but it didn't work for each 'command'
. For example system('ls')
returns /cygdrive/c/cygwin/bin/ls: write error: Bad file descriptor
and I think that this is beacause R calls ls >& -
which also returns same error. So how solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我希望您仍然对解决方案感兴趣。这是我所拥有的:
system('C:/cygwin/bin/ls.exe');
export PATH="$PATH:/cygdrive/c/Programme/R-2.9.2/bin"
Rgui.exe
system('ls')
问候,
马丁。
I hope you are still interested in a solution. Here is what I have:
system('C:/cygwin/bin/ls.exe');
export PATH="$PATH:/cygdrive/c/Programme/R-2.9.2/bin"
Rgui.exe
system('ls')
Regards,
Martin.