Last active
July 18, 2016 16:05
-
-
Save 47ronin/7a5967b9f4003206ac7cbabb53694254 to your computer and use it in GitHub Desktop.
BASH command to recursively search current directory for filenames containing string; case-insensitive, ending with specific extension
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
#!/bin/bash | |
find . -iname "*string*.jpg" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment