Unique lines in CSV or TSV file
# TSV sort -u -k1,1 INPUT.csv > OUTPUT.csv # CSV sort -u -t, -k1,1 INPUT.csv > OUTPUT.csv