#!/bin/sh # # # okaload # # Copyright (c) 2007, 2012, Oracle and/or its affiliates. All rights reserved. # # NAME # okaload - front end for the Perl script that does the work. # # DESCRIPTION # Purpose # load or unload OKA drivers. # # NOTES # This wrapper program now supports only Lunix/Unix platforms. # Use okaload.bat for Windows platforms. # # ############################################################################# ORA_CRS_HOME=%ORA_CRS_HOME% if [ ! -d $ORA_CRS_HOME ]; then ORA_CRS_HOME=$ORACLE_HOME fi ORACLE_HOME=$ORA_CRS_HOME export ORA_CRS_HOME ORACLE_HOME CMDNAME=okaload TOOLS_DRIVER=${ORACLE_HOME}/lib/okatoolsdriver.sh exec $TOOLS_DRIVER $CMDNAME $@ # Should never get here. exit -1