cmd/csv2table/README.md
Generate ASCII table on the fly via command line ... Installation is simple as
go install github.com/olekukonko/tablewriter/cmd/csv2table@latest
csv2table -f test.csv
cat test.csv | csv2table -p=true
+------------+-----------+---------+
| FIRST NAME | LAST NAME | SSN |
+------------+-----------+---------+
| John | Barry | 123456 |
| Kathy | Smith | 687987 |
| Bob | McCornick | 3979870 |
+------------+-----------+---------+
falseecho dance,with,me | csv2table -p=true -h=false
+-------+------+-----+
| dance | with | me |
+-------+------+-----+