gg_zipfile_chk() # This assumes a standard directory of # /ora01/Oracle_SW/gg121 for the distribution media { ####################################################### # If the directory exists see if the files is there ####################################################### clear echo echo "Checking for the V46695-01.zip file" echo echo echo "Checking directory /ora01/Oracle_SW/gg121 for zip file ......." echo if [ -f /ora01/Oracle_SW/gg121/V46695-01.zip ]; then echo "..../ora01/Oracle_SW/gg121/V46695-01.zip file found....." else echo "..../ora01/Oracle_SW/gg121/V46695-01.zip file not found." fi echo echo "Checking directory /ora01/Oracle_SW/1212111/gg121 for zip file ......." echo if [ -f /ora01/Oracle_SW/gg121/1212111/V46695-01.zip ]; then echo "..../ora01/Oracle_SW/gg121/1212111/V46695-01.zip file found....." else echo "..../ora01/Oracle_SW/gg121/1212111/V46695-01.zip file not found." fi echo echo "Checking for the xagpack_7b.zip file" echo echo echo "Checking /ora01/Oracle_SW/xag71 for zip file ......." echo if [ -f /ora01/Oracle_SW/xag71/xagpack_7b.zip ]; then echo "..../ora01/Oracle_SW/xag71/xagpack_7b.zip file found....." else echo "..../ora01/Oracle_SW/xag71/xagpack_7b.zip file not found." fi }