The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 08-21-2008
Franklin52 Franklin52 is online now Forum Staff  
Moderator
  
 

Join Date: Feb 2007
Posts: 4,327
The touch command isn't necessary, the file is created if it's not present.
Does your script echo the messages to stdout/stderr? Try to redirect both the output to the file:


Code:
at -f batch.sh now >> log.txt 2>&1

Regards