例如,我只想监视python进程(有几个),我想做一些像top -option“python”之类的东西.
它很简单,但它有很多选项.
试试这个:
ps -eo pcpu,pid,user,args | sort -k 1 -r | head -10
应该通过cpu使用给你前10名.