Back to Tablewriter

README

cmd/csv2table/README.md

1.1.4784 B
Original Source

ASCII Table Writer Tool

Generate ASCII table on the fly via command line ... Installation is simple as

Install Tool

go install github.com/olekukonko/tablewriter/cmd/csv2table@latest

Usage

csv2table -f test.csv

Support for Piping

cat test.csv | csv2table -p=true

Output

+------------+-----------+---------+
| FIRST NAME | LAST NAME |   SSN   |
+------------+-----------+---------+
|    John    |   Barry   |  123456 |
|   Kathy    |   Smith   |  687987 |
|    Bob     | McCornick | 3979870 |
+------------+-----------+---------+

Another Piping with Header set to false

echo dance,with,me | csv2table -p=true -h=false

Output

+-------+------+-----+
| dance | with | me  |
+-------+------+-----+