Created
August 17, 2018 15:58
-
-
Save theptrk/70199cfbb32ca46d60297eec88c281d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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