I have written a program that outputs a lot of text to the terminal.
I am looking for certain words in the text to see if I have done it right, but simply reading the text is impossible.
Are there any capabilities or commands that can actually enable me to lookup a word in the terminal (like Ctrl + F)?
It's Shift + Ctrl + F.
You might want to change the Scrollback value to Unlimited to not lose any lines:
Edit > Profile Preferences > Scrolling
Another option:
Now, you can press the arrow keys to go up,down, left and right (usually you only use the first two).
You can also type
/word
so search for a word (or a regex) after the cursor. Conversely,?word
will search the word/regex before (above) the cursor. (Cursor is the position where you are in the text.)You can also use Home and End keys to go to the start and end of the output. Pressing
Q
will make you Quit (returning to the console).More info:
You could pipe the output to a file with
> myfile.txt
And then search the file with grep.I usually prefer this approach as you don't need to worry about the terminal buffer size, and you can easily keep output from multiple runs of program.
This eliminates @Alb's^ intermediary step of redirecting to a file.
If you use
GNU Screen
-copy
mode andjk
works fine.