是否有一个等同于bash命令的R?

前端之家收集整理的这篇文章主要介绍了是否有一个等同于bash命令的R?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我想查看R中的长输出或变量,是否有更多的bash命令?
为什么不使用内置的file.show?
more <- function(x) {
  file <- tempfile()
  sink(file); on.exit(sink())
  print(x)
  file.show(file,delete.file = T)
}

more(mtcars)
more(more)
原文链接:https://www.f2er.com/bash/384587.html

猜你在找的Bash相关文章