preserver3
Programmer
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 it? How?
Thanks.
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 it? How?
Thanks.