📜  su: 执行失败 bin bash: 资源暂时不可用 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:21.049000             🧑  作者: Mango

代码示例1
#This will kill all the process of specified user.
kill -9 $(ps aux | awk 'username {print $2}')
#Please change username with yours.