Skip to content

Instantly share code, notes, and snippets.

@rcoup
Created October 23, 2014 04:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rcoup/5f342fd8edae51046fd7 to your computer and use it in GitHub Desktop.
Save rcoup/5f342fd8edae51046fd7 to your computer and use it in GitHub Desktop.
Send yourself SIGTSTP to take the user back to a shell, 'fg' to resume
#!/usr/bin/env python
import os, signal
print "About to pause myself, do 'fg' to resume"
os.kill(os.getpid(), signal.SIGTSTP)
print "Resumed!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment