Search Results

Search: Posts Made By: neeraj617
2,072
Posted By Scrutinizer
Hi, try awk '{print $8}' instead of cut -d " " -f...
Hi, try awk '{print $8}' instead of cut -d " " -f 8
2,724
Posted By anurag.singh
Assuming that ONLY 10th and 11th columns are...
Assuming that ONLY 10th and 11th columns are considered to decide duplicates (No other column check)

awk 'NR==FNR{a[$10"_"$11]++;next;}{if(a[$10"_"$11] < 2) print $0}' inputFile inputFile
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 06:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy