Created
January 16, 2017 11:07
-
-
Save johnmmoss/f9f8cf143cf9733c2641301054a74dec to your computer and use it in GitHub Desktop.
Example grep command
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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