Use nohup! Here’s an example:nohup /some/script.ksh
And even better, to redirect all output to a specific location:nohup /home/user/script.ksh > /home/user/script.log 2>&1 &
Yes, the 2>&1 & at the end is important.
Use nohup! Here’s an example:nohup /some/script.ksh
And even better, to redirect all output to a specific location:nohup /home/user/script.ksh > /home/user/script.log 2>&1 &
Yes, the 2>&1 & at the end is important.