Find out most memory consumption process in HP UX

Dear All,

I want to find out top 15 memory consumption processes in HP UX. Can anyone give me any idea about it?

Kauser

Try :

UNIX95=1 ps -e -o vsz,pid,ppid,user,args | sort -rn  | head -15
1 Like

VSZ shows claimed/reserved/overcommitted memory.
I would rather sort on RSS that shows resident/initialized memory. Without header:

UNIX95=1 ps -e -o user= -o pid= -o rss= -o vsz= -o args= | sort -k3n | tail -15