标签:linux 命令
1. linux 下 取进程占用 cpu 最高的前10个进程ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|head
2. linux 下 取进程占用内存(MEM)最高的前10个进程ps aux|head -1;ps aux|grep -v PID|sort -rn -k +4|head
linux 常用语句汇总
原文地址:http://122269875.blog.51cto.com/1660536/1714899