Skip to content

Instantly share code, notes, and snippets.

@mbrgm
Last active August 29, 2015 13:56
Show Gist options
  • Save mbrgm/9004831 to your computer and use it in GitHub Desktop.
Save mbrgm/9004831 to your computer and use it in GitHub Desktop.

Mac OS X one-liners

Recursively delete .DS_Store files

$ find . -name '*.DS_Store' -type f -delete

Remove empty folders

$ find . -type d -empty -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment