Skip to content

Instantly share code, notes, and snippets.

@lholman
Last active September 17, 2015 21:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lholman/c7bf7c264cc31f9dda19 to your computer and use it in GitHub Desktop.
Save lholman/c7bf7c264cc31f9dda19 to your computer and use it in GitHub Desktop.
getAllFilesByExtensionAndPathName
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