1. # diff [OPTION]... FILES
    2. # compare files line by line, and show the differences
    3. # -i
    4. # –ignore-case —Ignores case differences in file contents
    5. # -b
    6. # –ignore-space-change —Ignores changes in the amount of white space
    7. # -w
    8. # –ignore-all-space —Ignores all white space
    9. # -q
    10. # --brief —Outputs only whether the files differ
    11. # -l
    12. # --paginate —Passes the output through pr to paginate it
    13. # comm [OPTION]... FILE1 FILE2
    14. # compare two sorted files line by line
    15. # -1 —Suppresses the output of column 1 (lines only in file1)
    16. # -2 —Suppresses the output of column 2 (lines only in file2)
    17. # -3 —Suppresses the output of column 3 (lines that are in both files)