Skip to content

找到内存占用最高的10个进程

bash
ps aux --sort=-%mem | head -10

杀掉匹配完整命令行的进程

bash
pkill -f "命令"