32 lines
428 B
Bash
32 lines
428 B
Bash
umask 022
|
|
echo TERM=$TERM
|
|
eval `echo TERM=$TERM`
|
|
if [ -f "$EXEC" ]
|
|
then
|
|
source $EXEC
|
|
fi
|
|
if [ -f /usr/local/bin/findsock ]
|
|
then
|
|
sock=`findsock $$`
|
|
fi
|
|
if [ -z "$sock" ]
|
|
then
|
|
vhost=`hostname`
|
|
else
|
|
vhost="$sock"
|
|
fi
|
|
vhost=`echo "$vhost" | cut -d . -f 1`
|
|
RECHNER=$vhost
|
|
if [ -z "$SSH_AUTH_SOCK" -a -f "$HOME/.ssh/identity" ]
|
|
then
|
|
eval `ssh-agent`
|
|
ssh-add
|
|
fi
|
|
|
|
if [ -f /etc/oraprofile ]
|
|
then
|
|
. /etc/oraprofile
|
|
fi
|
|
|
|
|