Skip to content

Instantly share code, notes, and snippets.

@phillipharding
Created April 28, 2020 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phillipharding/56df1c80e4939aff88471b7f9bafe7d8 to your computer and use it in GitHub Desktop.
Save phillipharding/56df1c80e4939aff88471b7f9bafe7d8 to your computer and use it in GitHub Desktop.
Recursively removes .DS_Store files
## Recursively Remove .DS_Store
# Show
find . -name '.DS_Store' -type f
# Remove
find . -name '.DS_Store' -type f -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment