Skip to content

Instantly share code, notes, and snippets.

@beebeo
Last active November 16, 2021 10:23
Show Gist options
  • Save beebeo/f722ff69fe2471dff821c045bc485aba to your computer and use it in GitHub Desktop.
Save beebeo/f722ff69fe2471dff821c045bc485aba to your computer and use it in GitHub Desktop.
Useful Mac Commands

Useful Mac Commands

Common stuff

Find all files in current directory by extension

find . -type f -name "*.extension"

DS_Store

Delete all .DS_Store files

sudo find / -name "*.DS_Store" -type f -delete

desktop.ini

Delete all desktop.ini files

find . -name "desktop.ini" -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment