A partir de less
, digite s digite o nome do arquivo que deseja salvar, em seguida, Enter .
Na página man
, em COMMANDS
:
s filename
Save the input to a file. This only works if the input is a pipe, not an ordinary file.
man
page também indica que, dependendo da instalação específica, o comando s
pode não estar disponível. Nesse caso, você poderia ir para a linha 1 com:
g or < or ESC-<
Go to line N in the file, default 1 (beginning of file).
e canalize todo o conteúdo para cat
com:
| <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.
então:
g|$cat > filename
ou:
<|$cat > filename
i.e. escreva g ou < ( g ou menor que ) | $ ( pipe e dollar ), em seguida, cat > filename
e Enter .
Isso deve funcionar se a entrada for um canal ou um arquivo comum.