Skip to content

Instantly share code, notes, and snippets.

@MakGulati
Last active December 27, 2019 21:58
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 MakGulati/889f136d311de32123338274642e9216 to your computer and use it in GitHub Desktop.
Save MakGulati/889f136d311de32123338274642e9216 to your computer and use it in GitHub Desktop.
regex find and delete
#find all files that are .png or .jpg and delete them
find . -type f \( -name "*.jpg" -o -name "*.png" \) -delete
#find all files that are not .png or .jpg and delete them
find . -type f ! \( -name "*.jpg" -o -name "*.png" \) -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment