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.
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.