A process with name=example can be killed by

killall -9 example

How to kill multiple instances of following command which contain spaces?

"valgrind --tool=lackey ./testcases/kernel/syscalls/waitpid/waitpid03"

Following command returns valgrind --tool=lackey ./testcases/kernel/syscalls/waitpid/waitpid03: No such file or directory

killall -9 "valgrind --tool=lackey ./testcases/kernel/syscalls/waitpid/waitpid03"

link|improve this question

71% accept rate
Escape the spaces with a \ (backslash)? – Daniel Beck Dec 10 '10 at 10:42
killall -9 "valgrind\ --tool=lackey\ ./testcases/kernel/syscalls/waitpid/waitpid03" – usajbalt Dec 10 '10 at 10:49
killall -9 valgrind\ --tool=lackey\ ./testcases/kernel/syscalls/waitpid/waitpid03...Both these command don't work. – usajbalt Dec 10 '10 at 10:49
1  
-9 is a last resort. You should use -SIGTERM, -SIGINT or -SIGQUIT first to give the application a chance to do cleanup and exit gracefully. – Dennis Williamson Dec 10 '10 at 16:51
feedback

3 Answers

up vote 1 down vote accepted

killall valgrind will kill all valgrind processes regardless of arguments. If you want to kill only processes whose command line is exactly valgrind --tool=lackey ./testcases/kernel/syscalls/waitpid/waitpid03, you can use pkill:

pkill valgrind --tool=lackey ./testcases/kernel/syscalls/waitpid/waitpid03

Like killall, pkill is on every non-embedded (and some embedded) Linux installations, and it's more powerful and often more reliable (but for some reason less well-known). The companion utility pgrep is identical except that it lists the PIDs instead of killing.

Another utility you may be interested in is fuser: fuser testcases/kernel/syscalls/waitpid/waitpid03 lists the processes that have the specified file open, and fuser -k would send a signal to these processes. When you're not trying to send a signal, lsof is a more powerful alternative to fuser (shows more stuff, has more filters).

link|improve this answer
feedback

You don't need to give killall the complete command line; killall valgrind would be sufficient in your case.

~$ perl -e 'sleep 10000' &
[1] 3586
~$ ps ax | grep perl
 3586 pts/3    S      0:00 perl -e sleep 10000
 3588 pts/3    S+     0:00 grep perl
~$ killall perl
[1]+  Terminated              perl -e 'sleep 10000'
~$ 
link|improve this answer
feedback

As well as the other good solutions, you could always install htop and then kill what you want by scrolling through the list of running processes and using the F9 (kill) key. Ok, it's not hard-nosed, command line stuff but it works!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.