Escape (end) in terminal

Viewed 16875

When I call methods where the output length is longer than the length of the terminal window, a highlighted (END) is returned at the end of the output (see picture). How can I escape from this? Mac terminal end

2 Answers

Or, if you are running in a script do an "echo q" before piping the command. For example: echo q | node --version

Related