Skip to content

Instantly share code, notes, and snippets.

@larsbutler
Created April 17, 2012 08:13
Show Gist options
  • Save larsbutler/2404421 to your computer and use it in GitHub Desktop.
Save larsbutler/2404421 to your computer and use it in GitHub Desktop.
Killing celeryd processes for oq-engine-LRT
#!/bin/bash
for i in `ps aux | grep [c]eleryd | awk '{print $2}'`; do kill -9 $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment