Created
September 1, 2015 09:36
-
-
Save mbigatti/93b132d19e7033a23e58 to your computer and use it in GitHub Desktop.
Stop and resume Unix process
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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