Outside of using something like screen, is it possible to 'assume' an active user session under Linux/UNIX?
For example, I ssh to my server from home. Then I ssh to it form work. I want to kill the home-spawned session, and "take-over" all of the processes that it had running.
warren@home> ssh warren@myserver
warren@myserver> top
...
warren@work> ssh warren@myserver
warren@myserver> <grab-other-session-of-mine>
After the <grab-other-session-of-mine> command/tool, the warren@home ssh session should be closed.
Is this possible?