Multiple choice technology operating systems

comm This command can be used to check whether two files are identical

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The comm command compares two sorted files and displays lines in three columns: lines only in file1, lines only in file2, and common lines. It is not designed to check if files are identical - cmp or diff -q are better suited for that task.