9951 explained code solutions for 126 technologies


findSearch for files not matching specific pattern


find /tmp -type f -not -name "*test*"ctrl + c
/tmp

base path to search in

-type f

locate only files (skip directories)

-not

will revert next rule

-name "*test*"

match all files containing test in their names (thus exclude them from results)