Ryan D'Baisse wrote:
I have found a ton of articles describing how to execute commands after logging in through SSH. However, I need to be able to execute a command and HAVE IT CONTINUE RUNNING after I disconnect from the box.
Anyone got a link or a quick 1-2-3 explanation of what I'm missing?
man screen
0$ screen 1$ your command press [ctl][a][d] [detached]
0$ screen -r 1$ your command 1$ exit
0$
-- shrek-m