Từ less
, nhập srồi nhập tên tệp bạn muốn lưu vào, sau đó Enter.
Từ man
trang, bên dưới COMMANDS
:
s filename
Save the input to a file. This only works if the input is a pipe, not an ordinary file.
man
Trang cũng nói rằng, tùy thuộc vào cài đặt cụ thể của bạn, s
lệnh có thể không khả dụng. Trong trường hợp đó, bạn có thể đi đến dòng 1 với:
g or < or ESC-<
Go to line N in the file, default 1 (beginning of file).
và chuyển toàn bộ nội dung sang 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.
Vì vậy:
g|$cat > filename
hoặc là:
<|$cat > filename
tức là loại ghoặc <( g hoặc ít hơn ) | $( ống rồi đô la ) rồi cat > filename
và Enter.
Điều này sẽ làm việc cho dù đầu vào là một đường ống hoặc một tập tin thông thường.
less
khi tôi đã mởless
.