De less
, tapez spuis tapez le nom du fichier que vous souhaitez enregistrer, puis Enter.
De la man
page, sous COMMANDS
:
s filename
Save the input to a file. This only works if the input is a pipe, not an ordinary file.
man
La page indique également que, selon votre installation, la s
commande peut ne pas être disponible. Dans ce cas, vous pouvez aller à la ligne 1 avec:
g or < or ESC-<
Go to line N in the file, default 1 (beginning of file).
et dirigez tout le contenu cat
avec:
| <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.
alors soit:
g|$cat > filename
ou:
<|$cat > filename
c'est-à-dire tapez gou <( g ou moins que ) | $( pipe puis dollar ) puis cat > filename
et Enter.
Cela devrait fonctionner si l'entrée est un canal ou un fichier ordinaire.
less
une fois que j'ai déjà ouvertless
.Vous n'en utilisez pas moins, vous utilisez un té, puis un tuyau en té pour moins.
./program | tee program.out | less
la source
tee
une foisless
avait déjà été ouverte.