|
not sure wha i'm talking about .. not sure the name of it .. but this is how it works.
i take a process i want to run in the background and i can start and detach it from the current screen.
[SHELL]$ screen -A -m -d -S cstrike ./hlds_run[/SHELL]
then when i want to pull up the screen again, i would type
[SHELL]$ screen -r cstrike[/SHELL]
now my current screen is this original process. i can again detach the screen by pressing ( ctrl + a ) d
|