Nohup and Screen

One can use nohup to run files that won't exit when the shell closes; also check out screen!
 
 $ nohup ./somescript.sh &
 $ screen -A -m -d -S somename ./somescript.sh &
 
also see: http://en.wikipedia.org/wiki/Nohup, Advanced Bash Scripting Guide