I wish to print lines that are in one file but not in another file. However, neither files are sorted, and I need to retain the original order in both files.
comm <(sort a) <(sort b) -3 → Lines in file b that are not in file a
comm <(sort a) <(sort b) -3