Skip to content

Instantly share code, notes, and snippets.

@craigmcnamara
Created July 9, 2020 00:14
Show Gist options
  • Save craigmcnamara/63a27605a05c90d22f90b428680c8dac to your computer and use it in GitHub Desktop.
Save craigmcnamara/63a27605a05c90d22f90b428680c8dac to your computer and use it in GitHub Desktop.
Add to your ~/bin to kill all chrome processes on OSX
ps -ef | grep Chrome | grep -v grep | awk '{print $2}' | xargs kill
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment