Skip to content

Instantly share code, notes, and snippets.

@benjamincharity
Created September 10, 2012 03:57
Show Gist options
  • Save benjamincharity/3688797 to your computer and use it in GitHub Desktop.
Save benjamincharity/3688797 to your computer and use it in GitHub Desktop.
Restart a paused OSX process by killing it via the command line.
$ 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