Skip to content

Instantly share code, notes, and snippets.

@atwright147
Last active July 5, 2017 16:22
Show Gist options
  • Save atwright147/dd44b53acd5bfc1055d5afda6119c3dc to your computer and use it in GitHub Desktop.
Save atwright147/dd44b53acd5bfc1055d5afda6119c3dc to your computer and use it in GitHub Desktop.
# find files matching pattern `*.orig`
find . -name '*.orig'
# find files matching pattern `*.orig` and delete them
find . -name '*.orig' -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment