Skip to content

Instantly share code, notes, and snippets.

@dalethestirling
Created August 28, 2014 03:14
Show Gist options
  • Save dalethestirling/3d98dfb474d1d3ab5f81 to your computer and use it in GitHub Desktop.
Save dalethestirling/3d98dfb474d1d3ab5f81 to your computer and use it in GitHub Desktop.
Kill Google Chrome threads on a mac when hung
ps aux | grep Chrome.app | awk -F ' ' '{ print $2 }' | xargs -I {} kill -9 {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment