A handy snippet for recursively deleting files and folders (within the a given folder) that contain the specified string:
find -name '*Landman*' -exec rm -rv {} +
Based upon this StackExchange article.
A handy snippet for recursively deleting files and folders (within the a given folder) that contain the specified string:
find -name '*Landman*' -exec rm -rv {} +
Based upon this StackExchange article.