#!/usr/bin/ksh # # gbo_mcmac_rmd_mirror_backdata.ksh - Calls the main mirror script # for GBO mag data collected at MCMAC # # Heavily based on gbo_uc_rmd_mirror_batch.ksh # # Creation Date: # # 29 Jan 2013 CLRussell # # ## 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 for year in 2013 do for month in 01 02 03 04 05 06 07 08 09 10 11 12 do /home/thmsoc/clrussells_stuff/mcmac/gbo_mcmac_rmd_mirror.ksh $year $month done done # ## Cleanup # exit 0