Hi everyone;
I have a file with one column the elements of which are separated by commas (,). The column has many rows, as in below:
45,56,890
67,92,4502
76,367,89
67,92,4502
67,92,4502
92,14,05
02,56,125
25,02,61
02,56,125
.
.
.
I want to go through all the rows in the column ignoring the similar rows and put the result in an output file. For example I want to count 67,92,4502 once and ignore the other similar ones (rows 4 and 5 are the same).
I hope I have explained the problem clearly.
Thanks in advance, Atrisa
I have a file with one column the elements of which are separated by commas (,). The column has many rows, as in below:
45,56,890
67,92,4502
76,367,89
67,92,4502
67,92,4502
92,14,05
02,56,125
25,02,61
02,56,125
.
.
.
I want to go through all the rows in the column ignoring the similar rows and put the result in an output file. For example I want to count 67,92,4502 once and ignore the other similar ones (rows 4 and 5 are the same).
I hope I have explained the problem clearly.
Thanks in advance, Atrisa
Comment