Sort Unix processes on ps by highest memory usage
just a snippet, –sort is not good for me..try
ps -eo pmem,pcpu,rss,vsize,args | sort -k 1 -r | more
Ideas For Sharing
just a snippet, –sort is not good for me..try
ps -eo pmem,pcpu,rss,vsize,args | sort -k 1 -r | more
Tags : bash command Linux ps snippet sort Unix
This entry was posted on Friday, March 7th, 2008 at 2:58 am and is filed under Blog, Solutions. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
April 18th, 2008 at 8:08 pm
how about
ps -eo pmem,pcpu,rss,vsize,args | sort -k 1 -r -n | more
July 8th, 2009 at 1:16 pm
Hi, this one helped me out,
apperantly pslist wasnt installed on the machine in question.