How can screen
be used to start a new session and run a command within that session without killing that session?
screen -S myScreenName runSomething
I tried the above command and it says
[screen is terminating]
Did it run the command then kill the screen? I would like the screen to be detached after running the command instead of killing it. How can that be done?