Kill a bunch of processes with the same name

ps ax | grep <processname> | grep -v grep | awk '{print $1}' | sudo xargs kill -9

-5
2009-03-24 19:52:47

What Others Think

Perhaps a use of killall instead?
cde1985 · 881 weeks ago
or pkill?
sander85 · 881 weeks ago
and please don't use kill -9, this is very bad behaviour. Please try it with kill -15 and if it doesn't end the process kill -2. Then you can still use kill -9.
lme · 880 weeks and 6 days ago
Wow. grep piped to grep piped to awk. Never thought I'd see that.
atoponce · 880 weeks and 5 days ago
Apart from the fact that there's pkill and killall (depending on the OS), there are quite a lot of things that can be improved in this command line. First, this is a nice trick to avoid the ugly "grep -v grep" part: ps ax | grep '[p]rocessname' Note that the first letter is enclosed in square brackets. This regular expression will match 'processname', but it will not match the grep command itself. Second, it doesn't make sense to pipe from grep to awk because awk has a "built-in grep": ps ax | awk '/[p]rocessname/{print $1}'
inof · 871 weeks and 1 day ago

What do you think?

Any thoughts on this command? Does it work on your machine? Can you do the same thing with only 14 characters?

You must be signed in to comment.

What's this?

commandlinefu.com is the place to record those command-line gems that you return to again and again. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.

Share Your Commands



Stay in the loop…

Follow the Tweets.

Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.

» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10

Subscribe to the feeds.

Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):

Subscribe to the feed for: