Sort Memory Intensive Processes
This simple Linux command one-liner will give you the process name, PID, and memory usage in kb: for file in /proc/*/status ; do awk ‘/^Pid|VmRSS|Name/{printf $2 ” ” $3}END{ print “”}’ $file; done | sort -k 3 -n -r | less Produces something like the following: R 19173 8206748 kB R 19305 7097212 kB clamd Read More …