April 2025posted on 04.27.2025Recursively 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
Recursively delete .DS_Store
Delete all
.DS_Storefound within a directory recursively:-printwill also print the path of the file when deleting.