Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/bin/ksh
#
# This will call and run an SQL file
#
if [ $# -ne 1 ]
then
echo "Usage: $0 <Input File Name>"
exit 1
fi
VAR1=whatever
export VAR1
VAR2=whatever2
export VAR2
sqlplus ITR_APP/IT765 << EOF
@$1
EOF
exit