kill -9 `ps -ef |grep xxx|awk '{print $2}' `
ps -ef | grep xxx| awk '{print $2}' | xargs kill -9
pgrep sshd
pgrep xxx| xargs kill -s 9
kill -s 9 `pgrep xxxx`
pidof sshd
kill -9 `ps -ef |grep xxx|awk '{print $2}' `
ps -ef | grep xxx| awk '{print $2}' | xargs kill -9
pgrep sshd
pgrep xxx| xargs kill -s 9
kill -s 9 `pgrep xxxx`
pidof sshd