Hi,
I have a 600,000 line file with 14 columns of data separated by a "|"
I need only the unique combinations of Column 3 and Column 7, and their instance of column 1 so I can find the ID number.
awk -F"|" '{print $1} {print $3} {print $7} foo.txt | ???
Do I need to try to sort this or niq...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.