The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



Thread: aix cron job
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 01-29-2002
rwb1959's Avatar
rwb1959 rwb1959 is offline
Registered User
 

Join Date: Aug 2001
Location: Virginia, USA
Posts: 438
Do you get any specific error messages?

For instance, I run a backup job like...

35 3 * * * /aixback.sh > /tmp/aixback.log 2>&1;
egrep -v "a " /tmp/aixback.log | mail
myself@mymailhost.com

This will send me an email with the results
I'm interested in from the log. Note I run
a shell script to encapsulate the backup
command since I want to do several other things
as well (gives me better control).