Delete all files in current directory and its subdirectory

Delete all files in current directory and its sub-directories , the file name starts with “lms_”:

find . -type f -name lms_\* -exec rm {} \;