Code Yarns ‍👨‍💻
Tech BlogPersonal Blog

Compare files at shell using comm

📅 2017-Feb-23 ⬩ ✍️ Ashwin Nanjappa ⬩ 🏷️ comm, compare, intersection ⬩ 📚 Archive

comm

comm is a useful Linux tool to use at the shell. It takes two files with sorted lines as input and displays which lines are unique to each file and which lines are common (intersection) to both. For example, this might be useful when comparing which files are common among two directories and so on. This tool is a part of coreutils package, so it should be available everywhere.

$ comm first.txt second.txt

You will see 3 columns in the output corresponding to lines unique to first file, lines unique to second file and lines common to both.

$ comm -1 -2 first.txt second.txt

Tried with: Ubuntu 16.04


© 2022 Ashwin Nanjappa • All writing under CC BY-SA license • 🐘 @codeyarns@hachyderm.io📧