Skip to content

Instantly share code, notes, and snippets.

@skounis
Last active March 18, 2024 13:41
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skounis/fd65b0b267d935dd3662 to your computer and use it in GitHub Desktop.
Save skounis/fd65b0b267d935dd3662 to your computer and use it in GitHub Desktop.
Remove Icon file in MacOS recursively
#!/bin/bash
find . -name "Icon?" -print0 | xargs -0 rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment