Skip to content

Instantly share code, notes, and snippets.

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 boywijnmaalen/4f2e2652cb5fecd941bc40314f893de5 to your computer and use it in GitHub Desktop.
Save boywijnmaalen/4f2e2652cb5fecd941bc40314f893de5 to your computer and use it in GitHub Desktop.
delete files with the current directory as the 'root' directory based on a wildcard #CLI #UNIX #MacOsX
# find every file in the current directory recursively based on a wildcard.
$ find . -name '._*' -type f -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment