# # Added by Kevin Inscoe 12/23/2003 to avoid prompts from cron # if [ -t ]; then if [ "`/bin/tty`" != "/dev/console" ]; then # Only interactive prompting goes on in this block! stty erase ^H set -o vi PS1='$PWD> ' ORACLE_SID=STARPROD; export ORACLE_SID echo "The SIDs on this machine are:" cat /var/opt/oracle/oratab | awk -F: '{print $1}' |\ grep -v "#" ORAENV_ASK="YES" . /usr/local/bin/oraenv fi fi