Skip to content

Instantly share code, notes, and snippets.

@HereOrCode
Created January 11, 2025 09:16
Show Gist options
  • Save HereOrCode/70ffa020163bce93bdc3beddf0b572b3 to your computer and use it in GitHub Desktop.
Save HereOrCode/70ffa020163bce93bdc3beddf0b572b3 to your computer and use it in GitHub Desktop.
Delete macOS .Ds_Store files
# Find DS_Store
alias fds="find . -name .DS_Store"

# Delete DS_Store
alias dds="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