Home arrow Linux Tips arrow Top Ten Memory Utilizing Processes
Syndicate
Top Ten Memory Utilizing Processes PDF Print E-mail
Mar 04, 2010 at 08:01 PM
Top Ten Memory Utilizing Processes

$ ps axo rss,comm,pid | awk '{ proc_list[$2] += $1; } END { for (proc in proc_list) { printf("%d\t%s\n", proc_list[proc],proc); }}' | sort -n | tail -n 10
<Previous   Next>

Mambo is Free Software released under the GNU/GPL License.