Skip to content

Instantly share code, notes, and snippets.

@laszlomiklosik
Created July 13, 2015 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laszlomiklosik/f1a65882354f438f7041 to your computer and use it in GitHub Desktop.
Save laszlomiklosik/f1a65882354f438f7041 to your computer and use it in GitHub Desktop.
Linux find file recursively by content
# for example
find . -type f -name '*.java' -print0 | xargs -0 grep -l 'implements MyInterface'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment