Skip to content

Instantly share code, notes, and snippets.

@paulsmith
Forked from zaius/background.sh
Created January 17, 2011 15:26
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 paulsmith/782962 to your computer and use it in GitHub Desktop.
Save paulsmith/782962 to your computer and use it in GitHub Desktop.
ctrl-z
bg
touch /tmp/stdout
touch /tmp/stderr
gdb -p $!
# In GDB
p dup2(open("/tmp/stdout", 1), 1)
p dup2(open("/tmp/stderr", 1), 2)
detach
quit
# Back in shell
disown
logout
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment