Skip to content

Instantly share code, notes, and snippets.

@kpping
Last active December 11, 2018 04:02
Show Gist options
  • Save kpping/e31290a35644dbb922a7b1bd2db0c103 to your computer and use it in GitHub Desktop.
Save kpping/e31290a35644dbb922a7b1bd2db0c103 to your computer and use it in GitHub Desktop.
remove `.DS_store` recursively from current directory
#!/usr/bin/env bash
find . -name .DS_Store -type f -delete -print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment