Skip to content

Instantly share code, notes, and snippets.

@Hotfirenet
Created March 21, 2017 09:01
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 Hotfirenet/f55e285abf602077346ac8145daf0e11 to your computer and use it in GitHub Desktop.
Save Hotfirenet/f55e285abf602077346ac8145daf0e11 to your computer and use it in GitHub Desktop.
Commande qui permet de supprimer tous les fichiers DS_Store
find /home/foo \( -name '.DS_Store' -or -name '._.DS_Store' -or -name '._*' -or -name '.TemporaryItems' -or -name '.apdisk' \) -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment