Skip to content

Instantly share code, notes, and snippets.

@ravinsharma12345
Forked from zaius/background.sh
Created May 13, 2014 12:57
Show Gist options
  • Save ravinsharma12345/240598eb8fe9e8d8deef to your computer and use it in GitHub Desktop.
Save ravinsharma12345/240598eb8fe9e8d8deef 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