I have a program which throws StackOverflowException
. So the error output is very big and I can't read beginning of output from terminal. How can I watch all program output?
I know that there is something like pagination in terminal. I've googled about it and found advice to use more
or less
commands.
So I've tried...
java Program | less
But it doesn't work. What am I doing wrong?