i generated a big text file input.txt, the content is lines of file paths, which i will use later in a loop but there're some path patterns i want to remove, like node_modules
i have the ignore patterns saved in ignore.txt file, how can i filter a input.txt file according to ignore.txt file to generate output.txt file, with all path patterns removed?
thank you!