IT-Dienstleistungen

column

All posts

FreeBSD

Add columns to text file

cat ordinal.txt 
1 first
2 second
3 third

(echo "NUMBER ORDINAL" ; cat ordinal.txt) | column -t
NUMBER  ORDINAL
1       first
2       second
3       third