Linux command column - display tabular format.
#!/bin/bash
column - command for display table
0:18 don't working "--help"
column --help
0:24 working only with "man"
man column
0:48 display with command "cat"
cat table.txt
1:07 without options
column table.txt
1:20 with option -t (tabular format)
column -t table.txt
1:41 with option -t and -s(delimiter)
column -t -s"," table.txt
2:05 with option "-e" - don't ignore empty lines
column -t -s"," -e table.txt