Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以通过以下方式查看所有进程和内存的列表
ps aux
并浏览 VSZ 和 RSS 列数据。
有没有办法按 RSS 值的降序对该命令的输出进行排序?
PS:这是一个新手问题,因为我对 Unix/Linux 非常陌生。ubuntu
RSS 是第 6 列,所以你可以这样做:
ps aux | sort -k6,6 -rn
6,6