Skip to content

Instantly share code, notes, and snippets.

@tjunghans
Created October 5, 2016 14:57
Show Gist options
  • Save tjunghans/50178c28e02364f374bad77c1edf4625 to your computer and use it in GitHub Desktop.
Save tjunghans/50178c28e02364f374bad77c1edf4625 to your computer and use it in GitHub Desktop.
Find string in a directory recursively
find . -type f -print0 | xargs -0 grep -l "needle"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment