Simple command line utility to generate fixed-width tables from tab-separated inputs. Intended as a simple replacement
for column -t
that is more useful for viewing data from tab-separated inputs. Treats multiple consecutive tabs
as multiple fields (instead of collapsing them) and also ignores/suppresses empty lines and comment lines (lines
beginning with #
).
To build
- Install Scala Native as per the online guide.
- Clone the repo:
git clone https://github.com/tfenne/tabulate.git
cd tabulate && sbt nativeLink
After which target/scala-2.11/tabulate-out
should exist!