Skip to content

Instantly share code, notes, and snippets.

@RohitRox
Forked from jls/remove_ds_store_files.sh
Created March 25, 2019 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RohitRox/1a86a604fd721f270d83ee36713e569d to your computer and use it in GitHub Desktop.
Save RohitRox/1a86a604fd721f270d83ee36713e569d to your computer and use it in GitHub Desktop.
Remove all of the .DS_Store files in the current directory and all sub directories.
find ./ -type f | grep .DS_Store | xargs rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment