script output should be piped to a file

hi
i have a script named mount.sh under the location /data/scripts/ in my aix box
i want this script this to be run everyday morning at 04:45 AM and the output of the script should be piped to a file
how to do this ?

This is nothing special for AIX - moving the thread.

mount.sh > output_file

Add the following line in your crontab (with 'crontab -e') :

45 4 * * * /data/scripts/mount.sh > outputfile

Jean-Pierre.