# ~/.bash_profile: executed by bash(1) for login shells. # see /usr/share/doc/bash/examples/startup-files for examples. # the files are located in the bash-doc package. umask 022 # the rest of this file is commented out. # include .bashrc if it exists #if [ -f ~/.bashrc ]; then # source ~/.bashrc #fi # set PATH so it includes user's private bin if it exists #if [ -d ~/bin ] ; then # PATH=~/bin:"${PATH}" #fi # # Oracle Stuff Goes Here # ORACLE_HOME=/usr/local/oracle/8i/u01/app/oracle/product/8.1.5 ORACLE_BASE=/usr/local/oracle/8i/u01/app/oracle export ORACLE_HOME ORACLE_BASE NLS_LANG='AMERICAN_AMERICA.WE8ISO8859P1' ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data ORACLE_TERM=vt100 LD_LIBRARY_PATH=$ORACLE_HOME/lib PATH=$PATH:$ORACLE_HOME/bin export NLS_LANG ORA_NLS33 PATH LD_LIBRARY_PATH # # Java Stuff Goes Here # export JAVA_HOME=/usr/local/jre export PATH=$JAVA_HOME/bin:$PATH