How to Use "rm" Together with "find"
How to delete several directories (or files) that you discovered with the find command?
find . -iname “dir name” -print0 | xargs -0 rm -r
Comments Off on How to Use "rm" Together with "find"