in reply to Recursive search and delete

For this task you probably don't need to resort to Perl e.g. using the standard command line tools
find -name 'abc*xml' | xargs rm
would accomplish the same.