The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #5 (permalink)  
Old 06-02-2009
methyl methyl is offline
Registered User
  
 

Join Date: Mar 2008
Posts: 1,184
Quote:
nohup a.sh &>/tmp/log &
Maybe try.


Code:
nohup a.sh 2>&1>/tmp/log &

i.e. If your script is producing an error or asking a question you may need to capture all output. Pure guesswork until we see what is in the scripts.