Skip to content

Instantly share code, notes, and snippets.

@exaland
Last active January 26, 2020 20:05
Show Gist options
  • Save exaland/940bdf4c73e7c673b5a63f44f04eca5f to your computer and use it in GitHub Desktop.
Save exaland/940bdf4c73e7c673b5a63f44f04eca5f to your computer and use it in GitHub Desktop.
Remove DS_Store file with underscore prefix files
# Remove all Underscore prefix files DS_Store
- Type this command in Terminal
sudo find / -name "._*" -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment