I have a data.txt
file with a lot of lines in it and a lines.txt
that contains some lines.
I want to delete all lines from data.txt
that match any line from lines.txt
and to save that new file as no_dupplicate_lines.txt
.
I tried this but it does not work:
LC_ALL=C fgrep -v -f dupp jour_24-06.txt
I looking for a solution a kind of File1 MINUS File2 => File1-File2