Skip to content

Instantly share code, notes, and snippets.

@SBeausoleil
Created March 29, 2021 19:05
Show Gist options
  • Save SBeausoleil/7009199c4f1f404331b5ddd470efdc14 to your computer and use it in GitHub Desktop.
Save SBeausoleil/7009199c4f1f404331b5ddd470efdc14 to your computer and use it in GitHub Desktop.
Write-Host "Searching recursively for \"$($args[0])\""
Get-ChildItem -Recurse | Select-String $args[0] -List | Select-Object Path | Format-Table -AutoSize
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment