長い文字列が端末で切り捨てられないようにするにはどうすればよいですか?たとえば、私が実行した場合
journalctl -xn
読めない文章がたくさんあります。私は他のプログラム/ツールを使用することにオープンです。
承認された回答:
journalctl
から マンページ:
The output is paged through less by default, and long lines are
"truncated" to screen width. The hidden part can be viewed by using the
left-arrow and right-arrow keys. Paging can be disabled; see the
--no-pager option and the "Environment" section below.
左右の矢印キーを常に使用したくない場合は、直接less
にパイプするだけです。 :
$ journalctl -xn | less
これにより、端末に対して長すぎる行が折り返されます(less
のデフォルトの動作) 、journalctl
オーバーライド)。
または、もちろん、端末のスクロールバックを使用する必要がある可能性を気にしない場合は、ポケットベルをまったく使用できません。
$ journalctl -xn --no-pager