1. 程式人生 > >linux下取程序佔用cpu(mem)最高的前10個程序

linux下取程序佔用cpu(mem)最高的前10個程序

# linux 下 取程序佔用 cpu 最高的前10個程序
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|head


# linux 下 取程序佔用記憶體(MEM)最高的前10個程序
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +4|head