से 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
।