I was working with Python with a Linux terminal screen. When I typed:
help(somefunction)
It printed the appropriate output, but then my screen was stuck, and at the bottom of the terminal was "(end)".
How do I get unstuck? Thanks in advance.
|
1
|
I was working with Python with a Linux terminal screen. When I typed:
It printed the appropriate output, but then my screen was stuck, and at the bottom of the terminal was "(end)". How do I get unstuck? Thanks in advance.
|
|||
|
|
|
|
That program uses your pager, which is by default more. You can exit just by pressing q. |
||
|
|
|
The standard on GNU (or other Unix-like) systems is to use the environment variable Mine is set to:
Yours might be set to It sounds like yours is modelled after the Since you can do all these things wherever you are in the output, the program needs an explicit command from you to know that you're done navigating the output. In all likelihood that command is the keypress For more information on how to drive your pager, e.g. |
|||
|
|