Skip to content

Instantly share code, notes, and snippets.

@CoralineAda
Created April 19, 2024 00:08
Show Gist options
  • Save CoralineAda/646b9d6ed9c8e1c0af2eeea041addaae to your computer and use it in GitHub Desktop.
Save CoralineAda/646b9d6ed9c8e1c0af2eeea041addaae to your computer and use it in GitHub Desktop.
Recursively delete .DS_Store files
find . -name .DS_Store -print0 | xargs -0 rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment