Last active
September 17, 2015 21:20
-
-
Save lholman/c7bf7c264cc31f9dda19 to your computer and use it in GitHub Desktop.
getAllFilesByExtensionAndPathName
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
Get-ChildItem -path "C:\Development" -Filter "*.xslt" -Recurse | Where { $_.FullName -like "*Mainline*Environment*"} | ForEach-Object {Start notepad++ $_.FullName} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment