Von less
Geben Sie sden Dateinamen Sie geben speichern möchten, dann Enter.
Von der man
Seite unter COMMANDS
:
s filename
Save the input to a file. This only works if the input is a pipe, not an ordinary file.
man
Auf der Seite wird außerdem angegeben, dass der s
Befehl je nach Installation möglicherweise nicht verfügbar ist. In diesem Fall können Sie in die Zeile 1 wechseln mit:
g or < or ESC-<
Go to line N in the file, default 1 (beginning of file).
und leite den gesamten Inhalt weiter an cat
:
| <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.
also entweder:
g|$cat > filename
oder:
<|$cat > filename
dh Typ goder <( g oder kleiner als ) | $( Pipe dann Dollar ) dann cat > filename
und Enter.
Dies sollte funktionieren, unabhängig davon, ob es sich bei der Eingabe um eine Pipe oder eine normale Datei handelt.
less
sobald ich bereits geöffnet habeless
.Sie verwenden nicht weniger, Sie verwenden T-Stück und leiten dann T-Stück zu weniger.
./program | tee program.out | less
quelle
tee
einmalless
hatte bereits geöffnet worden.