テーブルデータを読み取るためのコマンドラインユーティリティ

テーブルデータを読み取るためのコマンドラインユーティリティ

私は大規模なデータセットの構造をすばやく研究できるコマンドラインユーティリティを探しています。今、私は次を使用しています。head -n 2 datasetしかし、問題は、出力幅が端末/画面幅より大きいことです。

Ctrl+fVimで開いた/ scrollファイルでできるように、ファイルを水平に(固定された列数だけ)スクロールするツールがあれば完璧ですCtrl+b

ベストアンサー1

おすすめしたいless

あらゆる方向にナビゲートできます。

less -S logfile

-Sまたは- 長い行を切る

          Causes lines longer than the screen width to be chopped rather than folded.  That is, the portion of a long line that does not fit in the screen width is not shown.  The default is to fold long lines; that is, display
          the remainder on the next line.

水平移動のため

ESC-)または右矢印

          Scroll horizontally right N characters, default half the screen width (see the -# option).  If a number N is specified, it becomes the default for future RIGHTARROW and LEFTARROW commands.  While the text is scrolled,
          it acts as though the -S option (chop lines) were in effect.

ESC-(または左矢印

          Scroll horizontally left N characters, default half the screen width (see the -# option).  If a number N is specified, it becomes the default for future RIGHTARROW and LEFTARROW commands.

おすすめ記事