Skip to content

Instantly share code, notes, and snippets.

@rauluranga
Created June 30, 2016 23:22
Show Gist options
  • Save rauluranga/c1dfd9eb4a86afcc72aa851bce4d0e3c to your computer and use it in GitHub Desktop.
Save rauluranga/c1dfd9eb4a86afcc72aa851bce4d0e3c to your computer and use it in GitHub Desktop.
Recursively Remove .DS_Store
# Open up Terminal
# In the command line, type: cd
# Drag and drop the folder you wish to delete .DS_Store files from, in this case our theme folder. Press enter.
# run:
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