How do I find out the files in the current directory which do not contain the word foo (using grep)?
foo
grep
find *20161109* -mtime -2|grep -vwE "(TRIGGER)"
You can specify the filter under "find" and the exclusion string under "grep -vwE". Use mtime under find if you need to filter on modified time too.