PowerShell grep
I kept forgetting how to perform the equivalent of grep(1) in PowerShell. The simple answer is Select-String. It is aliased to sls.
ipconfig | Select-String 192.168
I should probably add a permanent alias.
I kept forgetting how to perform the equivalent of grep(1) in PowerShell. The simple answer is Select-String. It is aliased to sls.
ipconfig | Select-String 192.168
I should probably add a permanent alias.