I looking for easiest way to filter two files.
INPUT: txt files
File 1 (bigger one):
abc111
abc112
abc113
abc114
abc115
...
zbc999
File 2 (smaller one):
abc111
abc112
abc113
OUTPUT:
On the output I want to have new file with non-recurring (unique) data set. In other words, in output file must be only those entries from a larger file 1 that are unique and do not occur in a smaller file 2.
BTW:
How to do it easily if the file names are long and difficult to enter them every time the console?