|
|
|
|
|
by diflartle
490 days ago
|
|
> or this (ps ax | grep ffmpeg)
>
> Get-Process | Where-Object { $_.ProcessName -match "ffmpeg" } The way to write that on the command line Powershell would be: ps ffmpeg
Whereas your longer example is what you put in the PS1 file. |
|