#!/bin/bash # # 0_get_iodc.bash # # All this does is run get_iodc.bash and put the output into dated log files. # yyyy=`date +%Y` ddd=`date +%j` thedate=`date` logfile=$HOME/logs/area/iodc_log.$yyyy$ddd errfile=$HOME/logs/area/iodc_errlog.$yyyy$ddd echo $thedate >> $logfile echo $thedate >> $errfile $HOME/scripts/get_iodc.bash >> $logfile 2>>$errfile exit 0