Heray-Was-Here
Server : Apache
System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : calvet ( 273824)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /usr/local/instantclient_12_2/lib/sdk/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/local/instantclient_12_2/lib/sdk/ott
#! /bin/sh
# Script for running ott in instant client.
# Before running this script:
#   set the default jdk<ver>/bin in your PATH
#   set LD_LIBRARY_PATH to include the directory containing the instant client 
#       libraries
#   set ottclasses.zip, ojdbc<ver>.jar as part of your CLASSPATH

OS=`uname`
MACHINE=`uname -m`
JREOPTIONS=

if [ "$OS" = "HP-UX" ]; then
        if [ "$MACHINE" = "ia64" -o "$MACHINE" = "9000/800" ]; then
                JREOPTIONS=-d64
        fi
fi
if [ "$OS" = "SunOS" ]; then
        if [ "$MACHINE" = "sun4u" -o "$MACHINE" = "sun4v" ]; then
                JREOPTIONS=-d64
        fi
fi

while [ $# -gt 0 ]
do
      case $1 in
      user*)
              OTTUSER="$OTTUSER $1"
              export OTTUSER ;;
      *)
              args="$args $1";;
      esac
shift
done

exec java $JREOPTIONS oracle.ott.c.CMain nlslang=${NLS_LANG} $args

Hry