Skip to content

Instantly share code, notes, and snippets.

@joshwines
Created May 1, 2018 01:33
Show Gist options
  • Save joshwines/6ef53eeb1cdc9beb8ca617ebaf72926d to your computer and use it in GitHub Desktop.
Save joshwines/6ef53eeb1cdc9beb8ca617ebaf72926d to your computer and use it in GitHub Desktop.
Kill all unicorn threads
ps aux | grep -ie '[u]nicorn' | awk '{print $2}' | xargs kill -9
# or with sudo
ps aux | grep -ie '[u]nicorn' | awk '{print $2}' | xargs sudo kill -9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment