Question { 11870 }
what is the use of uniq commmand?
Answer
uniq command search the uniq data in file and if some
duplicate date then it put only single records in report.
For Example: cat testnumber.txt | uniq
File contents:
1233
456
678
1233
678
output file shows:
1233
456
678