Skip to content

Instantly share code, notes, and snippets.

View aroldodev's full-sized avatar

Aroldo Lopez aroldodev

View GitHub Profile
@aroldodev
aroldodev / MAIN.md
Created October 3, 2022 23:51
Recursively Remove .DS_Store files in MacOS

Recursively Remove .DS_Store

1- Open up Terminal

2- In the command line, cd to/your/directory

3- Finally, in the command line, type: find . -name '.DS_Store' -type f -delete. Press enter.

Warning: Never use a wildcard (*) with this command, unless you know what you're doing. Bad things can happen if you don't.