Hi! i have a list of terms in file "search.txt" that i am checking against a multiple column containig file "sentence.txt". here is the linux grep command that works
grep -f search.txt sentence.txt >matches.txt
it prints the lines that match the terms in the first file. and this is what i want.
if the "search.txt" size is too big it does not run on linux. how can we do this in windows/linux for big files.
thanks in advance
grep -f search.txt sentence.txt >matches.txt
it prints the lines that match the terms in the first file. and this is what i want.
if the "search.txt" size is too big it does not run on linux. how can we do this in windows/linux for big files.
thanks in advance