Skip to content

Instantly share code, notes, and snippets.

@booyaa
Created August 13, 2013 12:17
Show Gist options
  • Save booyaa/6220532 to your computer and use it in GitHub Desktop.
Save booyaa/6220532 to your computer and use it in GitHub Desktop.
findstr magick

find needle in haystack and traverse all subdirectories

findstr /S /i needle hay*.stack

find a specific phrase

``findstr /c:blah blah blah hay*.stack```

use regex

findstr /r /c:^needle hay*.stack

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment