I have two files:
input.txt :
Hi 1-12T2EDD 1-13D62L6Hello 1-15SDWAKWazzup Wow1-18Z3QWY
filter.txt :
1-15SDWAK 1-1VF3XHV
I want to remove lines with the appropriate pattern from filter.txt in input.txt . In SQL understanding, I want to make a left outer join input.txt using filter.txt .
output.txt :
Hi1-12T2EDD 1-13D62L6Hello Wow1-18Z3QWY
source share