有时我NetBeans
的Ubuntu
系统会挂起。如何终止它?
aux |grep [n]etbeans
为了找到正确的 ID,提供了太多 ID。
killall java
杀死其他 java 应用程序,但不会NetBeans
。
怎麼殺NetBeans 8.2
?
答案1
您可以使用
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
...
您甚至可以使用正则表达式来过滤适合您特定需求的进程名称。