Skip to content

Instantly share code, notes, and snippets.

@theptrk
Created August 17, 2018 15:58
Show Gist options
  • Select an option

  • Save theptrk/70199cfbb32ca46d60297eec88c281d4 to your computer and use it in GitHub Desktop.

Select an option

Save theptrk/70199cfbb32ca46d60297eec88c281d4 to your computer and use it in GitHub Desktop.
# find
find -name '* SOME_SPECIFIER.SOME_EXTENSION'
# find and delete
find -name '* SOME_SPECIFIER.SOME_EXTENSION' -delete
# example 1: delete all files to end in `"space"1.JPG`
find -name '* 1.JPG' -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment