#!/bin/sh

######################################################
# Name:      recovery_gdas.sh
# Purpose:   To create GDAS GDAS1 Recovery Control File
#
# History:   Created DEC 14 1999
######################################################

clear

echo "Enter Start PDY (YYYYMMDD):"
read START_PDY

echo "Enter Start CYC (00,06,12,18):"
read START_CYC

echo "Enter End PDY (YYYYMMDD):"
read END_PDY

echo "Enter End CYC (00,06,12,18):"
read END_CYC

echo "Enter Interval Between Cycles (6,12,24)"
read CYC_FREQ

echo "${START_PDY}${START_CYC} ${END_PDY}${END_CYC} $CYC_FREQ" > /tmpnwprd/gdas_recover.control

echo "You may now rerun all of the /utility_ibm/recovery/gdas jobs."

exit
