#!/bin/bash export ORACLE_BASE="/u01/app/oracle" export ORACLE_HOME="$ORACLE_BASE/product/6i" source $ORACLE_HOME/.profile if [ -a $HOME/.profile ];then source $HOME/.profile fi # since X11R6 the numlock key is a modifier key ( like ctrl and alt ) # some key board shortcuts in oracle reports dont work when numlock # is turned on. so we turn this feature ( numlock is called Mod2 ) # off in a custom .Xmodmap which resides in $ORACLE_HOME xmodmap $ORACLE_HOME/.Xmodmap # and of course let the user override our settings if [ -a $HOME/.Xmodmap ];then xmodmap $HOME/.Xmodmap fi rwrun60 $*