If I have a list of filenames in a text file that I want to exclude when I run find, how can I do that? For example, I want to do something like:
find
fi
I think you can try like
find /dir \( -name "*.gz" ! -name skip_file1 ! -name skip_file2 ...so on \)