Find files and directories containning your search terms, and delete them witout confirmation and recursively. No matter if they are not empty.
find . -name "search_terms" -exec rm -rf {} \;
Find files and directories containning your search terms, and delete them witout confirmation and recursively. No matter if they are not empty.
find . -name "search_terms" -exec rm -rf {} \;