Skip to content

Instantly share code, notes, and snippets.

@kashav
Created June 5, 2017 21:57
Show Gist options
  • Save kashav/e184ada9f01d6afd559873bcf3d247f4 to your computer and use it in GitHub Desktop.
Save kashav/e184ada9f01d6afd559873bcf3d247f4 to your computer and use it in GitHub Desktop.
Kill all active Chrome tabs
#!/usr/bin/env bash
ps ux | grep '[C]hrome Helper --type=renderer' | grep -v extension-process | tr -s ' ' | cut -d ' ' -f2 | xargs kill
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment