#!/usr/bin/ksh # # gbo_atha_rmd_mirror_batch.ksh - Calls the main mirror script # for GBO mag data collected at University Athabasca # # Based heavily of gbo_uc_rmd_mirror_batch.ksh by Tim Quinn # # # ## Set the environment variables # if [[ -z $THMSOC ]] then THMSOC=/disks/socware/thmsoc_dp_current export THMSOC fi . ${THMSOC}/src/config/soc_it_to_me.config # ## Determine dates to check # site=VLDR for year in 2007 #2008 2009 2010 do for month in 01 #02 03 04 05 06 07 08 09 10 11 12 do echo $site echo $year echo $month gbo_atha_rmd_mirror.ksh $site $year $month done done # year=2011 # for month in 01 02 03 04 # do # echo $site # echo $year # echo $month # gbo_atha_rmd_mirror.ksh $site $year $month # done # ## Cleanup # exit 0