Using bash, how to find files in a directory structure except for *.xml files? I\'m just trying to use
find . -regex ....
regexe:
find . -not -name '*.xml'
Should do the trick.