Equivalent to unix "less" command within R console

r, shell

Solution

There is also `page()` which displays a representation of an object in a pager, like less.

dat <- data.frame(matrix(rnorm(1000), ncol = 10))
page(dat, method = "print")

Problem

Is there an equivalent to the unix `less` command that can be used within the R console?

Original source