Back to TIL
April 2025
posted on 04.27.2025

Recursively delete .DS_Store

Delete all .DS_Store found within a directory recursively:

find . -name '.DS_Store' -type f -delete -print

-print will also print the path of the file when deleting.

No reactions yet

in Naperville, IL
Last visitor from Mitaka, Japan