查看某个进程
ps -ef |grep libreoffice
查看某个进程的总数量
ps -ef |grep libreoffice | wc -l
杀死所有同类进程
ps -ef|grep libreoffice | awk '{print $2}' | xargs kill -9