Is there any command in R console which behaves same as "more" command in Linux? Consider this
>x=list(seq(100000), seq(100000))
>x
It displays everything at one go and shows message at the end "reached getOption("max.print")". Scrolling back to top doesn't show me the first values. I need a command like more(x) which will show more and more by pressing space bar.