Skip to content

Instantly share code, notes, and snippets.

@swooningfish
Created January 8, 2013 15:05
Show Gist options
  • Save swooningfish/4484476 to your computer and use it in GitHub Desktop.
Save swooningfish/4484476 to your computer and use it in GitHub Desktop.
find . | xargs grep 'string' -sl
find . -iname '*php' | xargs grep 'string' -sl
find . -name *.php | grep -lir "string" *
find . -name *.php | grep -lir "string" *
i = irgnore case
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment