Skip to content

Instantly share code, notes, and snippets.

@ryannealmes
Created September 10, 2015 08:43
Show Gist options
  • Save ryannealmes/353dcc7f185729c2958d to your computer and use it in GitHub Desktop.
Save ryannealmes/353dcc7f185729c2958d to your computer and use it in GitHub Desktop.
How to kill all processes with a given name
kill $(ps aux | grep '[d]elayed_job' | awk '{print $2}')
Credit:
http://stackoverflow.com/questions/3510673/find-and-kill-a-process-in-one-line-using-bash-and-regex
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment