Created
September 10, 2012 03:57
-
-
Save benjamincharity/3688797 to your computer and use it in GitHub Desktop.
Restart a paused OSX process by killing it via the command line.
This file contains hidden or 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
$ ps -ax | grep Photoshop | |
## change 12345 to the PID number returned with the first command. | |
$ kill -CONT 12345 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment