Using bash, how to find files in a directory structure except for *.xml files? I\'m just trying to use
find . -regex ....
regexe:
Try something like this for a regex solution:
find . -regextype posix-extended -not -regex '^.*\.xml$'