Skip to content

Instantly share code, notes, and snippets.

@josephwb
Created June 27, 2025 23:36
Show Gist options
  • Select an option

  • Save josephwb/ce02beffae3e0df8553cd3b721ebeea7 to your computer and use it in GitHub Desktop.

Select an option

Save josephwb/ce02beffae3e0df8553cd3b721ebeea7 to your computer and use it in GitHub Desktop.
Get rid of mac compression artefacts
#!/bin/bash
# delete (recursively) all stupid mac .DS_Store files
# also delete files of form ._whatever
find . -name .DS_Store -delete
find . -type f -name '._*' -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment