system
が実行されたコマンドによって返された値を目に見えない形で返すように見えるため、少なくとも* nixシステムではこれを行うことはできませんが、Windows/Macシステムは手元にありません。コマンドの出力をRコンソールにリダイレクトするように見えます。
これは、端末のstdout
がRコンソールの "stdout"と同じではないためです。あなたのRセッションでは、端末のstdout
とRプロセスの出力が混在しています。 capture.output
は、Rプロセスの出力を検索していますが、すべての出力が親プロセスのstdout
に出力されるわけではありません。
stdout
に印刷するプロセスを開始し、バックグラウンドに入れてRを開始すると、 "R出力"にそのプロセスの出力が表示されます。実行した場合と同様にsystem("ping -c5 8.8.8.8")
R.
[email protected]: /home/josh
> ping -c5 8.8.8.8 & R
[1] 5808
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_seq=1 ttl=46 time=39.9 ms
R version 3.2.4 Revised (2016-03-16 r70336) -- "Very Secure Dishes"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
Natural language support but running in an English locale
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
> 64 bytes from 8.8.8.8: icmp_seq=2 ttl=46 time=38.1 ms
64 bytes from 8.8.8.8: icmp_seq=3 ttl=46 time=38.3 ms
64 bytes from 8.8.8.8: icmp_seq=4 ttl=46 time=38.4 ms
64 bytes from 8.8.8.8: icmp_seq=5 ttl=46 time=38.3 ms
--- 8.8.8.8 ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 4003ms
rtt min/avg/max/mdev = 38.176/38.656/39.986/0.703 ms
> q()
Save workspace image? [y/n/c]: n
[1]+ Done ping -c5 8.8.8.8
[email protected]: /home/josh
>
ありがとう!私はこれを知っていましたが、 'system()'の出力をキャプチャする方法を見つけることができれば、それを使用しませんでした。ジョシュア・ウルリッヒの答えの下で私のコメントを参照してください。 –
@Yihuiそれは悪いことではありません - 特に 'system />の' ignore.stdout'と 'ignore.stderr'オプションは'>/dev/null'や '2/dev/null'を追加するだけです'コマンド'へのリダイレクト(:) – daroczig