# Tablify Tablify is a basic utility for creating neatly formatted text tables from a tab/other delimited file. It attempts to right align numeric fields and left aligns all others. ## Options -h Use first line for column headings -s Skip blank lines in file -d Specify alternative delimiter (default is tab) ## Usage user@host:/home/user$ cat stuff.tsv | tablify +-----------+-------+ | Vegetable | Price | | Carrots | 1.00 | | Potatoes | 2.00 | | Onions | 1.00 | | Asparagus | 10.00 | +-----------+-------+ user@host:/home/user$ cat stuff.tsv | tablify -h +-----------+-------+ | Vegetable | Price | +-----------+-------+ | Carrots | 1.00 | | Potatoes | 2.00 | | Onions | 1.00 | | Asparagus | 10.00 | +-----------+-------+ ## Download git clone git://gopher.icu/tablify