Blog by Edo Frederix edofrederix@gmail.com RSS

Nice linux command

June 11, 2008

Abstract

Just a nice Linux command I figured out..

Following command will display the top 10 CPU users on the Linux system.

ps -eo pcpu,pid,user,args | sort -k 1 -r | head -10

Cheers!