column - 入力を表形式に整形 - Linuxコマンド
http://webkaru.net/linux/column-command/
指定したカラムのみを表示するコマンド
http://qiita.com/rita_cano_bika/items/8383b46018838c113809
フリーソフトでもおすすめがあれば教えて下さい。
よろしくお願いします。
--------------
【補足】(2018/09/11)
(参考)vscodeの「検索とExcel Viewer」の連続技をしてみた
https://qiita.com/mrrclb48z/items/ba56659bf66c43d9f20c
--------------
【補足】(2019/03/24)
①csv2table~CSVやTAB区切りのデータをテキスト罫線の表に変換 【ソフト種別】フリーソフト
https://pcgenki.com/soft3/csv2table.htm
┏ ━ ┳ ┓
┣ ┃ ╋ ┫
┗ ┻ ┛
②サクラエディタの正規表現を使って、表の罫線を削除
置換前(N) ┏|━|┳|┓|┣|┃|╋|┫|┗|┻|┛
置換後(P)
--------------
【補足】(2019/06/29)
整形されたCSVファイルをターミナル上で表示
--------------
【補足】(2019/07/12)
#VSCodeでやってみる。
(参考)VSCodeでCSVをステキに見やすくする「Rainbow CSV」を紹介するよ
https://qiita.com/0w0/items/07a481921a2ac09a049f
###環境
・vscode
・Rainbow CSV
・sakura editor
###実行方法
vscodeで,
ctrL+shift+P
RBQL
(表形式でCSVデータが表示されます。)
マウスで表を選択する。
(NRの番号は選択したくないど、選択される。)
sakura editorに貼り付ける。
sakura editorの矩形選択でNRの番号を削除する。
(残りはTAB09の処理)
全選択(ctrl+A)
変換(C)
TAB→空白(S)(ctr+alt+F5)
###問題点
・https://freebsd.sing.ne.jp/tool/03/04/07.html
「タブ幅」で整形したみたい。
「タブ幅」の使い方を理解していない。
・一番文字数の多いフィールド(長い文字列)を検索する必要があるかも。
--------------
【補足】(2019/10/13)
#「BusyBox」にcolumnコマンドは、ないようです。
(参考)WindowsでLinuxのコマンドが使える「BusyBox」
https://qiita.com/idontwannawork/items/49edf8ddee5b04621680
--------------
【補足】(2019/12/11)
#windows10のwsl にcolumnコマンドがありました。
実行例
$ pwd
/home/xxx
$ which column
/usr/bin/column
$ man column
COLUMN(1) BSD General Commands Manual COLUMN(1)
NAME
column — columnate lists
SYNOPSIS
column [-entx] [-c columns] [-s sep] [file ...]
DESCRIPTION
The column utility formats its input into multiple columns. Rows are filled before columns.
Input is taken from file operands, or, by default, from the standard input. Empty lines are
ignored unless the -e option is used.
The options are as follows:
-c Output is formatted for a display columns wide.
-s Specify a set of characters to be used to delimit columns for the -t option.
-t Determine the number of columns the input contains and create a table. Columns are delim‐
ited with whitespace, by default, or with the characters supplied using the -s option.
Useful for pretty-printing displays.
-x Fill columns before filling rows.
-n By default, the column command will merge multiple adjacent delimiters into a single
delimiter when using the -t option; this option disables that behavior. This option is a
Debian GNU/Linux extension.
-e Do not ignore empty lines.
ENVIRONMENT
The COLUMNS, LAーNG, LC_ALL and LC_CTYPE environment variables affect the execution of column as
described in environ(7).
EXIT STATUS
The column utility exits 0 on success, and >0 if an error occurs.
EXAMPLES
"(printf ""PERM LINKS OWNER GROUP SIZE MONTH DAY "" ; "
"printf ""HH:MM/YEAR NAME\n"" ; "
ls -l | sed 1d) | column -t
SEE ALSO
colrm(1), ls(1), paste(1), sort(1)
HISTORY
The column command appeared in 4.3BSD-Reno.
BUGS
Input lines are limited to 512 times LINE_MAX (1M) wide characters in length.
BSD July 29, 2004 BSD