ways to continue run command after shell exit
Tue, 06/30/2009 - 10:46 — sandip-
screen:
screen -dmS <screen_name> <command>
exit
nohup <command> &
exit
echo "<command>" | at now
exit
<command> &
disown -h
exit
screen -dmS <screen_name> <command>
exit
nohup <command> &
exit
echo "<command>" | at now
exit
<command> &
disown -h
exit