I'd like to tabularize a file with the column command:
$ column -c 60 file.txt
The output is nice on the screen, but unusable for my purposes because the items are seperated by tabs. for further processing, I need them as whitespace.
Of course, I cannot just replace one tab with one space because this would destroy the left-alignment of the 2nd, 3rd etc column.