「Linux」fmtでテキストファイルを整形して表示する
書式
fmt -w 文字数 ファイル名
-t:段落最初から2行目のインデントを保存し、段落の左マージンに使用
使用例
1行あたりの20文字を指定します。
# fmt -w 20 resolv.conf
# /etc/resolv.conf domain localdomain nameserver 8.8.8.8 nameserver 2001:4860:4860::8888 nameserver fe80::1%lo0 options ndots:5 timeout:10 attempts:3 rotate options attempts 3
# fmt -w 20 -t resolv.conf
# /etc/resolv.conf domain localdomain nameserver 8.8.8.8 nameserver 2001:4860:4860::8888 nameserver fe80::1%lo0 options ndots:5 timeout:10 attempts:3 rotate options attempts 3