Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for an equivalent of for example DOS's dir |more which lists the data, until one page is complete, then waits for a key to be pressed until showing another. Is there an equivalent for MATLAB's help system.

I know I could simply scroll back, but this would be so much more convenient, expecially if one uses help system often.

share|improve this question
Is it really something that obvious; therefore the downvote? – Rook Sep 1 '10 at 4:53
It's not obvious per se, but a '>> help help', followed by '>> help more' would have gotten you what you needed. The fact of using help on help did amuse me though. – dpwave Sep 1 '10 at 9:48
in old versions of matlab "help help" would return "I'm drowning!" but at some point they lost their sense of humor why is still pretty good though – Marc Sep 1 '10 at 15:00

1 Answer

up vote 10 down vote accepted

Type more on at the command line. This will print command outputs page by page.

For the next line: 'return'; next page; 'spacebar'; return to command line: 'q'.

Likewise, more off resumes the normal display mode.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.