Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$ comm fileA fileB
1233
1234
3245
4321
$# Lines common to both
$ comm -12 fileA fileB
1234
3245
4321
$# Lines only in fileB
$ comm -13 fileA fileB
1233
$# Lines only in fileA
$ comm -23 fileA fileB
$