Created
April 22, 2010 10:01
-
-
Save xenoterracide/375050 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Check for an interactive session | |
[ -z "$PS1" ] && return | |
alias ls='ls --color=auto' | |
PS1='[\u@\h \W]\$ ' | |
export ORACLE_BASE="${HOME}/app/oracle" | |
export ORACLE_HOME="${ORACLE_BASE}/product/11.2.0/dbhome_1" | |
export ORACLE_SID=orcl | |
export ORACLE_HOME_LISTNER="${ORACLE_HOME}" | |
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ORACLE_HOME}/lib" | |
export ORACLE_INVENTORY="${ORACLE_HOME}/inventory" | |
PATH="${PATH}:${ORACLE_HOME}/bin" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment