recursive delete question
Hello all!
I need to recursively delete directories which contain files matching *.abc
So in an example directory structure such as this...
/directory/
/directory/test1/
/directory/test2/temp.abc
/directory/test3/
/directory/test4/subdirectory1/
/directory/test4/subdirectory2/temp.abc
thetest2 andtest4/subdirectory2 directories would be deleted (and their contents of course). Any idea how this would be accomplished?

