Skip to content

Instantly share code, notes, and snippets.

@GromNaN
Created November 6, 2011 12:19
Show Gist options
  • Save GromNaN/1342799 to your computer and use it in GitHub Desktop.
Save GromNaN/1342799 to your computer and use it in GitHub Desktop.
Pause process
# Find the process ID
ps -ax | grep Safari
# Pause the process
kill -STOP 1234
# Resume the process
kill -CONT 1234
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment