Sometimes, I'm getting as an input tab separated list, which is not quite aligned, for instance
var1 var2 var3
var_with_long_name_which_ruins_alignment var2 var3
Is there an easy way to render them aligned?
var1 var2 var3
var_with_long_name_which_ruins_alignment var2 var3
column -t
? – alex Feb 20 '11 at 11:45columns -t
acts on general whitespace. To work with tabs only, usecolumn -t -s $'\t'
– Peter.O Feb 20 '11 at 23:40