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 UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 03-01-2006
berrean berrean is offline
Registered User
 

Join Date: Feb 2006
Posts: 4
ScatterBrain is right - but you may want to send any errors to std err for inital debugging.

try:

Code:
#!/bin/sh

nohup ./my_program > error.log 2>&1
Reply With Quote