I need to list all files in a directory tree excluding files with certain text in its names. This thread helped me to create something similar:
find . -type f |grep -v '/[.svn-base]' -
I need to list all files in a directory tree excluding files with certain text in its names. This thread helped me to create something similar:
find . -type f |grep -v '/[.svn-base]' -
isn’t
find . -type f ! -iname “*.svn-base”
fit for that?