<tutorialjinni.com/>

Linux Top Sort By Memory

Posted Under: Linux, Shell, Snippets on Feb 12, 2021
Linux command to find the memory usage by user and sort it in descending order.
ps aux --sort -%mem | awk '{print $4,$1,$11}' | sed '/root/d' | head -50
linux sort user processes by memory usage


imgae