Linux: Recursively find all files with a certain name and delete them
Dienstag, 19. März 2019, 15:16 Uhr | roberto@vasquez-angel.de |This will recursively delte all files named “Gemfile.lock” in the current folder:
find . -name "Gemfile.lock" -type f -delete