Skip to content

Instantly share code, notes, and snippets.

@rafidude
Created December 13, 2013 22:29
Show Gist options
  • Save rafidude/7952516 to your computer and use it in GitHub Desktop.
Save rafidude/7952516 to your computer and use it in GitHub Desktop.
Unix command to find files recursively that contain a specific string
find . -name "*.coffee" -exec grep -q "variance" '{}' \; -print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment