1、最占用内存的前十个进程
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +4|head
2、最占用CPU的前十个进程
ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|head