Y
Hacker News
new
|
ask
|
show
|
jobs
by
sixQuarks
4825 days ago
the csv files are not that big. a few thousand rows. But there are lots of duplicates rows I need to get rid of
1 comments
pcowans
4825 days ago
Exact duplicate rows? If you have access to standard Unix tools, try this on a command line:
cat input_file.csv | sort | uniq > output_file.csv
link
cat input_file.csv | sort | uniq > output_file.csv