Manpages for the command "column" show:

column [-tx] [-c columns] [-s sep] [file ...]

 -s      Specify a set of characters to be used to delimit
         columns for the -t option.

I could not find out howto use parameter "-s". Can anybody give a syntax example with "-s"?

link|improve this question
feedback

migrated from stackoverflow.com Feb 9 at 8:43

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 6 down vote accepted
$ column -t -s'*' <<< 'a*b*c'
a  b  c
link|improve this answer
feedback

Your Answer

 
or
required, but never shown