有时,我在我的NetBeans系统上挂起了Ubuntu。怎么杀死它?
aux |grep [n]etbeans给了太多的身份证才能找到正确的身份证。
killall java杀死其他java应用程序,但不杀死NetBeans。
如何杀死NetBeans 8.2?
发布于 2016-10-20 14:04:57
您可以使用
pkill -f 'netbeans'测试过了就成功了。
pkill --help说这个
$ pkill --help
Usage:
pkill [options] <pattern>
Options:
-<sig>, --signal <sig> signal to send (either number or name)
-e, --echo display what is killed
-c, --count count of matching processes
-f, --full use full process name to match
...您甚至可以使用正则表达式来筛选适合您特定需求的进程名。
https://askubuntu.com/questions/839628
复制相似问题