我知道我可以通过名称搜索进程
ps -aux | grep <name>
有没有办法使用它来检索pid
指定进程的当前消耗CPU最多的?例如,如果我搜索进程名称godot
并且有 5 个godot
进程,我可以检索pid
消耗 CPU 最多的进程吗?
答案1
使用top
命令:
top -b -o -%CPU
分解它:
top ==> display processor activity
-b ==> execute in bash mode
-o ==> override command to change what we sort by
-%CPU ==> sorting parameter