1. 程式人生 > >linux 下取程序佔用 cpu/記憶體 最高的前10個程序

linux 下取程序佔用 cpu/記憶體 最高的前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