I have a simple bash script that will make an SQLPlus call.
The flow looks like it executes the:
echo "begin"
then the echo "mama"
then the makes the SQLPLUs call. WHY?????. Can I change the logic run??
#!/bin/sh
##set -x
echo " begin"
######### ORAQA CHECK ##########################
##########
#########
sqlplus xxxapc/xxxboy@myoracle << EOSQL &
host touch /home/jack/oramm.check
host echo "hoooy"
quit
EOSQL
echo "mama"
Start Free Trial