Windows 中与“ps aux | wc -l”等效的命令是什么?

Windows 中与“ps aux | wc -l”等效的命令是什么?

我知道 Windows 中“ps aux”的等效项tasklist在我的 win10 上运行良好

在此处输入图片描述

Windows 中“wc -l”的对应内容是什么?Windows 等效wc -lfind /c /v ""

当我尝试将它们结合在一起时,我得到了

查找:参数格式不正确

在此处输入图片描述

如何使用powershell获取win10上运行的进程数?

答案1

(Get-Process).Count

另外还有:

(Get-Process|Select-Object -ExpandProperty Threads).Count

在 CMD 中(以管理员身份)运行它:powershell "(Get-Process|Select-Object -ExpandProperty Threads).Count"

示例输出: 在此处输入图片描述

信用:哈里麦克

更多信息请访问https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-process?view=powershell-7.2

答案2

tasklist | Measure-Object -l

而且我还保留着我的烟斗,因此我感觉很好 ;)

相关内容