如果我想查看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)