回答:
端末に現在表示されているセクションのみを保存するには、|
コマンドを使用できます。
からman less
:
| <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.
If <m> is '.' or newline, the current screen is piped.
|
(パイプ記号).
マークを選択して、端末に表示されているものだけを選択します(または単にヒットしますEnter)tee
ファイルへの保存に使用します例tee /tmp/section_of_big_file.txt
スクリーンショットのシーケンス:
cat foo | less -o bar
どこbar
の出力ファイルとされfoo
、入力ファイル?