We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ps aux | grep powershell | grep -v grep
Return filtered results. I.e. same as
PS > $a = ps aux | grep powershell; $a | grep -v grep vors 2995 7.4 0.3 4813880 44460 s000 S+ 11:07AM 0:10.07 -powershell vors 6628 0.0 0.1 4810520 19192 s001 S+ 11:35AM 0:02.51 -powershell
Pipeline hanging (first grep never receives "output closed" event, besides the fact that corresponding stream is disposed)
> $PSVersionTable Name Value ---- ----- PSVersion 6.0.0-alpha PSEdition Core PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...} BuildVersion 3.0.0.0 GitCommitId v6.0.0-alpha.17 CLRVersion WSManStackVersion 3.0 PSRemotingProtocolVersion 2.3 SerializationVersion 1.1.0.1
Steps to reproduce
Expected behavior
Return filtered results. I.e. same as
Actual behavior
Pipeline hanging (first grep never receives "output closed" event, besides the fact that corresponding stream is disposed)
Environment data