[NOTE]Which process eating memory on #Linux

Following command will show which process taking maximum memory in easy readable on Linux.

[Short note for myself]

ps aux  | awk '{print $6/1024 " MB\t\t" $11}'  | sort -n