file1.txt
aaaa
bbbb
cccc
dddd
eeee
file2.txt
DDDD
cccc
aaaa
result
bbbb
eeee
If it could be case insensitive it would be even more great!
Thank you!
|
file1.txt
file2.txt
result
If it could be case insensitive it would be even more great! Thank you!
| |||
feedback
|
|
Excerpts from the man pages:
| ||||
|
feedback
|
|
From the top of my head, use
| |||
|
feedback
|
or you can use awk
| ||||
|
feedback
|
|
ghostdog74's awk example can be simplified:
| |||
|
feedback
|
|
For various set operations on files see: http://www.pixelbeat.org/cmdline.html#sets In your case the inputs are not sorted, so you want the difference like:
| |||
|
feedback
|