You can use several UNIX-based commands while working with interactive SSH sessions.
UNIX commands | Description |
---|---|
grep | Filters output by keywords or expressions. |
more | Moves through output one page at a time. |
sed | Filters output by complex expressions. |
sort | Sorts output according to criteria. |
cut | Removes individual columns from output. |
head | Displays only first lines. |
less | Moves through the output bidirectionally a page at a time. (secure mode) |
tail | Shows only the last lines. |
uniq | Hides any duplicate information. |
tr | Translate characters. |
wc | Counts lines and words and characters in data. |