This package is a command utility used to remove duplicate rows from csv's based on a single column's values
This package requires you to pass in 2 arguments via command line to execute properly Example Usage:
$ go run main.go nameOfColumnToDeDupe /absolute-path/to/csvFile.csv
The process will (in this order):
- Read all of the rows into memory, filtering out duplicates
- Delete the old csv
- Recreate the csv without duplicates from the in memory grid of values, in place of deleted csv