Created
April 12, 2017 06:02
-
-
Save notTag/43d1a18a888bcd33c1fb901bc19e862f to your computer and use it in GitHub Desktop.
This file contains 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
Creating a gist for all the terminal usage scenarios I come across as I come across them. | |
Recursively search through current directory and all subdirectories | |
find . -name "*.txt" | |
OR if you want to use grep | |
find . -print | grep -i "\.txt" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment