`
gigi_112
  • 浏览: 113333 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

linux 下取进程占用 cpu/内存 最高的前10个进程

阅读更多

此文于2010-12-12被推荐到CSDN首页
如何被推荐?

# 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

0
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics