pretty

Tuesday, January 10, 2023

recursive grep in Powershell

The eqvivalent of grep -r in Powershell
Get-ChildItem -Recurse -Include *.txt -Path . | Select-String -Pattern "foobar"

No comments:

Post a Comment