comm command in Linux
comm compares two sorted files and gives three column output regarding, lines unique to file 1, lines unique to file 2 and the common lines.
0 Comments
September 29, 2018
comm compares two sorted files and gives three column output regarding, lines unique to file 1, lines unique to file 2 and the common lines.
The uniq command is a filter for finding unique lines in input. It reads input, suppresses duplicates and prints unique lines in its output.