########################################
# Script: global_rh_cmc.sh
# ABSTRACT:  This script produces a GRIB 
#  file containing the relative humidity
#  from CMC GRIB files containing
#  temperature and dew point depression
########################################
set +x
echo " "
echo "Entering sub script  global_rh_cmc.sh"
echo "File 1 =$1"
echo "File 2 =$2"
echo "File 3 =$3"
echo " "
set -x

fileint=$1
fileind=$2
fileout=$3

ln -sf $fileint   fort.11
ln -sf $fileind   fort.12
ln -sf $fileout   fort.51

$EXECGLOBAL/global_rh_cmc

echo " "
echo "Leaving sub script  global_rh_cmc.sh"
echo " "
