Skip to content

Instantly share code, notes, and snippets.

@guziy
Created October 28, 2013 21:04
Show Gist options
  • Save guziy/7204653 to your computer and use it in GitHub Desktop.
Save guziy/7204653 to your computer and use it in GitHub Desktop.
Kill all processes containing bootstrap.py in the command
for id in $(ps ax | grep bootstrap.py | cut -d" " -f1)
do
kill -9 $id
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment