Skip to content

Instantly share code, notes, and snippets.

@tallesairan
Created October 4, 2017 17:16
Show Gist options
  • Save tallesairan/e209d70bbaf7adabd63bcd4a5470ed75 to your computer and use it in GitHub Desktop.
Save tallesairan/e209d70bbaf7adabd63bcd4a5470ed75 to your computer and use it in GitHub Desktop.
Delete all files recursively with name on unix systems
find / -name .DS_Store -print0 | xargs -0 rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment