0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Linuxコマンドの出力結果が長すぎて見出しが流れる場合の対処法

Last updated at Posted at 2019-05-17

たとえば

ps -ef

とか

netstat -anp

とかやると出力が多すぎて、| grep ~とか使ってみたい情報だけ抽出するんだけど、
そうすると先頭行が消えてしまい、どの列が何を表しているのかわからなくなってしまうことがよくある。(新人ゆえ)

そんなとき、とりあえず出力が大量に出てギョッとしない方法を知ったので、備忘録として残す。

| less する

たとえば

ps -ef | less

とか

netstat -anp | less

とかやると出力がページャで表示されるのでとても見やすい。
| grep ~で抽出してたのは、forward slash → / 使って検索すればよい。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?