ps grep kill

参考: http://blog.csdn.net/johnny710vip/article/details/8613611

ps -ef |grep matlab -i |awk ‘{print $2}’|xargs kill -9
这里是输出ps -ef |grep matlab -i 结果的第二列的内容然后通过xargs传递给kill -9,其实第二列内容就是matlab的进程号!

python && shell

echo -e '\xe6\x89\x8e\xe5\xbf\x83\xe4\xba\x86\xef\xbc\x8c\xe8\x80\x81\xe9\x93\x81' | python -c "import sys; print(sys.stdin.read())"

你可能感兴趣的:(ps grep kill)