如果我想查看R中的长输出或变量,是否有更多的bash命令?
为什么不使用内置的file.show?
原文链接:https://www.f2er.com/bash/384587.htmlmore <- function(x) { file <- tempfile() sink(file); on.exit(sink()) print(x) file.show(file,delete.file = T) } more(mtcars) more(more)