Skip to content

Instantly share code, notes, and snippets.

@notTag
Created April 12, 2017 06:02
Show Gist options
  • Save notTag/43d1a18a888bcd33c1fb901bc19e862f to your computer and use it in GitHub Desktop.
Save notTag/43d1a18a888bcd33c1fb901bc19e862f to your computer and use it in GitHub Desktop.
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