Skip to content

Instantly share code, notes, and snippets.

@mbigatti
Created September 1, 2015 09:36
Show Gist options
  • Save mbigatti/93b132d19e7033a23e58 to your computer and use it in GitHub Desktop.
Save mbigatti/93b132d19e7033a23e58 to your computer and use it in GitHub Desktop.
Stop and resume Unix process
# first param is pid
# stop
kill -STOP $1
# resume
kill -CONT $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment