Hello
I want to sort a file and then uniq it, but ignoring the first field
so i have
REF | FOR | SUR
TLT090991|STEPHEN|GRIFFITHS
TLT090992|STEPHEN|GRIFFITHS
So i want to uniq but ignore the REF field
I had this but it doesnt work
cat $FILE | sort -t '|' -k2,3 | uniq > output