Skip to content

Instantly share code, notes, and snippets.

@ernestohs
Created July 28, 2014 16:31
Show Gist options
  • Save ernestohs/d58b2422a3076d1d9bfc to your computer and use it in GitHub Desktop.
Save ernestohs/d58b2422a3076d1d9bfc to your computer and use it in GitHub Desktop.
Search a string in multiple files and return the file names in Powershell
Get-ChildItem -recurse | Select-String -pattern "wally" | group path | select name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment