A commaand line app for viewing large CSV files.
Uses the SeeSV Go library for reading and navigating CSV files.
go mod tidy
go build
Open a CSV file.
./go-csv-viewer /path/to/myfile.csv
Open a CSV file that has 1 extra metadata line at the top of the file that should be skipped, with the column headers on line 2.
./go-csv-viewer -s 1 /path/to/myfile.csv