Skip to content

Instantly share code, notes, and snippets.

@rgbink
Last active June 20, 2016 01:03
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 rgbink/dbe19ce2bf326b302d5f to your computer and use it in GitHub Desktop.
Save rgbink/dbe19ce2bf326b302d5f to your computer and use it in GitHub Desktop.
Find and Delete files in Mac OS X Terminal
# Substitute your search term for YOURSEARCH
find ./ -name 'YOURSEARCH' -exec rm {} \;
# Change the command you apply to the found files by adjusting the call after the -exec
# For example, to list the found files…
find ./ -name '._*' -exec ls -al {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment