Skip to content

Instantly share code, notes, and snippets.

@franciscojunior
Last active October 8, 2016 19:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save franciscojunior/611733a98052a381756f70a89dfb1a4b to your computer and use it in GitHub Desktop.
Save franciscojunior/611733a98052a381756f70a89dfb1a4b to your computer and use it in GitHub Desktop.
Stop and continue Firefox processes
ps aux | grep -v "grep" | grep -i firefox.app | awk '{print $2}' | xargs kill -CONT
ps aux | grep -v "grep" | grep -i firefox.app | awk '{print $2}' | xargs kill -STOP
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment