C ccc Sep 12, 2010 #1 Hi Howto list all processes using more than 10% cpu with ps from the command line?
OP C ccc Sep 13, 2010 Thread Starter #3 Code: # ps -A -o "pid=" -o "pcpu=" |awk '$2 > 10 {print $1 " " $2}' | sort -r +1