|
Using diff and erasing the lines that match
How do I diff two files and erase the lines that are the same without having to go into an editor?
So if i have
List A
1
2
3
4
5
6
List B
2
4
6
If i diff these two files, i'd want to be able to have
List A -B = C
List C
1
3
5
|