less コマンドでタブの幅を変更する方法のメモ。
以下のファイルをタブの幅を変更して表示します。
1234567890123456789 abc {TAB}def {TAB}{TAB}ghi
less -x{num} でタブを num 個分の空白文字に変更できます。
$ less -x8 test.txt 1234567890123456789 abc def ghi $ less -x4 test.txt 1234567890123456789 abc def ghi $ less -x2 test.txt 1234567890123456789 abc def ghi