我注意到,当我在其中运行一个长命令时linux
(我在终端上使用的是 cantos 7.3 发行版,R 4.0.3)并且我通过管道head
仅向我显示第一个输出(并且命令停止)
ls -R /opt # on my system I would get tons of output for 10s of seconds
ls -R /opt | head # just get the top 5 and command is stopped straight away
当我在 RI 中尝试等效项时无法获得相同的行为
system(command = "ls -R /opt | head") # will take a long time (I assume the time for ls -R /opt to finish)
有没有办法让我获得与R
我在系统命令行上获得的行为相同的行为?