Risposte:
Per salvare solo la sezione attualmente visualizzata nel tuo terminale puoi usare il |
comando.
Da man less
:
| <m> shell-command
<m> represents any mark letter. Pipes a section of the input file to the given
shell command. The section of the file to be piped is between the first line on the
current screen and the position marked by the letter. <m> may also be '^' or '$' to
indicate beginning or end of file respectively.
If <m> is '.' or newline, the current screen is piped.
|
(il simbolo del tubo).
segno per selezionare solo ciò che è visibile sul tuo terminale (o semplicemente premere Enter)tee
per salvare in un file ad estee /tmp/section_of_big_file.txt
La sequenza con schermate:
cat foo | less -o bar
dovebar
sono il file di output efoo
il file di input?