จากless
พิมพ์แล้วพิมพ์ชื่อไฟล์ที่คุณต้องการจะบันทึกลงแล้วs
จากหน้าภายใต้:Enter
man
COMMANDS
s filename
Save the input to a file. This only works if the input is a pipe, not an ordinary file.
man
หน้ายังระบุว่าs
คำสั่งอาจไม่พร้อมใช้งานทั้งนี้ขึ้นอยู่กับการติดตั้งเฉพาะของคุณ ในกรณีนั้นคุณสามารถไปที่บรรทัดที่ 1 ด้วย:
g or < or ESC-<
Go to line N in the file, default 1 (beginning of file).
และไพพ์เนื้อหาทั้งหมด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.
ดังนั้นทั้ง:
g|$cat > filename
หรือ:
<|$cat > filename
เช่นชนิดgหรือ<( กรัมหรือน้อยกว่า ) | $( ท่อแล้วดอลล่า ) แล้วและcat > filename
สิ่งนี้จะทำงานได้ไม่ว่าอินพุตจะเป็นไพพ์หรือไฟล์ธรรมดาEnter
less
less