Remove all matching files from subdirectories

1970 + 1671412306
# remove all files beginning with "._" in all (sub)folders from current position
find . -name "._*" -type f -delete

More posts