I have a bunch of files in a folder:
foo_1 foo_2 foo_3 bar_1 bar_2 buzz_1 ...
I want to find all the files that do not st
If you're doing subdirectories as well:
find . ! -name "bar_*"
Or, equivalently,
find . -not -name "*bar_*"