in reply to ssh connection
Typically, you might have the following in /home/adm/teststart to achieve the desired functionality (unless the application knows how to trun itself into a daemon):
nohup(1) allows the application to carry on running once the controlling, in this case the login, session has terminated.. . # Start the app and return nohup /usr/bin/some_app >/dev/null 2>&1 & . .
|
|---|