Using bash, how to find files in a directory structure except for *.xml files? I\'m just trying to use
find . -regex ....
regexe:
You can also do it with or-ring as follows:
find . -type f -name "*.xml" -o -type f -print