1 powershell
Anri Kennel edited this page 2024-06-13 12:10:53 +02:00

First, add those function into your profile, type $profile in powershell to find out where the file is

grep:

function grep {
    param (
        [string]$pattern
    )
    Get-ChildItem -Recurse | Select-String -Pattern $pattern | Group-Object path | Select-Object name
}