四种方式
① pkill -u username
② killall -u username
③ ps -ef | grep username | awk '{print $2}" | xargs kill -9
注意这种方式对于用户名比较简单的,可能会导致误kill
④ pgrep -u username | xargs kill -9
四种方式
① pkill -u username
② killall -u username
③ ps -ef | grep username | awk '{print $2}" | xargs kill -9
注意这种方式对于用户名比较简单的,可能会导致误kill
④ pgrep -u username | xargs kill -9