Skip to content

Instantly share code, notes, and snippets.

@seemly
Created July 14, 2025 11:58
Show Gist options
  • Select an option

  • Save seemly/a56634e49e1dedc782e50450483b037a to your computer and use it in GitHub Desktop.

Select an option

Save seemly/a56634e49e1dedc782e50450483b037a to your computer and use it in GitHub Desktop.
Simple shell command to recursively remove unnecessary macOS metadata files (.DS_Store and AppleDouble ._ files) from a directory tree, useful for cleaning up files copied from macOS to Linux or NAS storage.
find /home /mnt /media /srv -type f \( -name '.DS_Store' -o -name '._*' \) -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment