Skip to content

Instantly share code, notes, and snippets.

@johnmmoss
Created January 16, 2017 11:07
Show Gist options
  • Save johnmmoss/f9f8cf143cf9733c2641301054a74dec to your computer and use it in GitHub Desktop.
Save johnmmoss/f9f8cf143cf9733c2641301054a74dec to your computer and use it in GitHub Desktop.
Example grep command
gci D:\git\TimesheetsPoc -Recurse -Filter *.csproj | foreach {
write-host Processing $_.Name -ForegroundColor Green
Get-Content $_.FullName | select-string -Pattern "v10.0"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment