]
トップ «前の日記(2010-11-04) 最新 次の日記(2010-11-06)» 編集

Yukiharu YABUKI の tDiary



このtDiaryを検索します。

2010-11-05 [長年日記]

_ columnコマンド

Debian planetで、下記のような投稿を見た。

/etc/fstab files tend to be an unreadable mess of unaligned fields.

snip!

Let's remove some whitespace in the third line:

#<filesystem> <mountpoint> <type> <options> <dump> <pass>

And then pipe everything from line 3 to the end through column -t:

[Cool Unix Features: column -t より引用]

columnコマンドをmanコマンドでどのような働きをするか確認した。たしかに、/etc/fstabの不要な空白を消すと

$ cat /etc/fstab | column  -t
#/etc/fstab:                   static          file         system             information.
#
# filesystem                   mountpoint      type         options            dump          pass
proc                           /proc           proc         defaults           0             0
/dev/mapper/yelona--vg-root    /               ext3         errors=remount-ro  0             1
/dev/sda1                      /boot           ext2         defaults           0             2
/dev/mapper/yelona--vg-swap_1  none            swap         sw                 0             0
/dev/scd0                      /media/cdrom0   udf,iso9660  user,noauto        0             0
/dev/scd0                      /media/floppy0  auto         rw,user,noauto     0             0
のように整列しますね。webで表示するのにちょっと変更しています。