0

how to filter duplicate statements in files

hello..,

i tried to filter duplicate statement presented in file and also tried to printed only 3rd column statement. it will worked by this command # awk ' {print $3}' file.txt | sort -u. here i used two syntax to get this output. Is there any alternate command to print this statement in single command.

yousuf
asked Sep 27, 2017
1 Answer
0

i think this command work for you... # awk '!x[$3]++ { print $3 }' file.txt

View More
arunkumarak
answered Sep 29, 2017
Your Answer
||||
x
 
100:0