본문 바로가기
테크/기타

ps 로 프로세스 찾아서 바로 kill 하기(ps, awk, xargs)

by ahnne 2015. 8. 26.


ps -ef | grep 프로세스명 | awk '{ print $2 }' | xargs kill -9