Ctrl-A [
This will activate copy mode in GNU/screen. Now, you can scroll up/down and look at your data. Use the following keys:
Ctrl-uandCtrl-dscroll the display up/down by the specified amount of lines while preserving the cursor position. (Default: half screen-full).Ctrl-bandCtrl-fscroll the display up/down a full screen.
From the man page - following movement keys can be used in copy mode:
h,j,k,lmove the cursor line by line or column by column.0,^and$move to the leftmost column, to the first or last non-whitespace character on the line.H,MandLmove the cursor to the leftmost column of the top, center or bottom line of the window.+and-positions one line up and down.Gmoves to the specified absolute line (default: end of buffer).|moves to the specified absolute column.w,b,emove the cursor word by word.B,Emove the cursor WORD by WORD (as in vi).C-uandC-dscroll the display up/down by the specified amount of lines while preserving the cursor position. (Default: half screen-full).C-bandC-fscroll the display up/down a full screen.gmoves to the beginning of the buffer.%jumps to the specified percentage of the buffer.
For searching use the following vi like syntax:
/SearchWord- Vi-like search forward.?SearchWord- Vi-like search backward.
Press
qto exit back to the terminal.