[Tips] linux下停止用户一切进程

ps -ef | grep 用户名 | awk '{ print $2 }' | sudo xargs kill -9
原文地址:https://www.cnblogs.com/immortalBlog/p/13141609.html