Linux shell
<command> | grep <filter>
PowerShell
<command> | Select-String -Pattern <filter>
Linux shell
cat <file>
cat <file> | grep <filter>
PowerShell
Get-Content <file>
Get-Content <file> | Select-String -Pattern <fitler>
Linux shell
<command> | grep <filter>
PowerShell
<command> | Select-String -Pattern <filter>
Linux shell
cat <file>
cat <file> | grep <filter>
PowerShell
Get-Content <file>
Get-Content <file> | Select-String -Pattern <fitler>