Skip to content

Instantly share code, notes, and snippets.

@heartonbit
Last active November 14, 2020 20:43
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 heartonbit/0c06305baee64f495d18ae12b3a29fcd to your computer and use it in GitHub Desktop.
Save heartonbit/0c06305baee64f495d18ae12b3a29fcd to your computer and use it in GitHub Desktop.
find and delete
find . -type f -name "*.bak" -delete
or
find . -name "FILE-TO-FIND" -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment