I was under impression that
rm -r *.xml
would remove all file from parent and child however:
*.xml: No such file or directory
more beautiful way, although this one is less supported in unix systems:
rm -rf */*.xml
this will remove xml files from all sub-directories of you current directory.