Skip to content

Instantly share code, notes, and snippets.

@yyamasak
Created November 28, 2022 08:29
Show Gist options
  • Save yyamasak/2a71884ce767d50bce73e926cabfdf70 to your computer and use it in GitHub Desktop.
Save yyamasak/2a71884ce767d50bce73e926cabfdf70 to your computer and use it in GitHub Desktop.
PowerShell script equivalent to "grep -r -A 1 ABCD *.txt"
Get-ChildItem . -include *.txt -Recurse | Select-String -Context 0,1 ABCD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment