umask 022
PAGER=$(which less 2>/dev/null)
if [ -z "$PAGER" ]; then
  PAGER=$(which more 2>/dev/null)
elif [ ! -L $PAGER ]; then 
  PAGER="$PAGER -irs"
fi
MANPAGER=$PAGER
read TZ 2>/dev/null < /etc/timezone
if [ "$PS1" ]; then
  if [ "$BASH" ]; then
    PS1='\u@\h:\w$ '
  fi
fi
export PAGER MANPAGER TZ
if [ -r ~/.profile ]; then
  . ~/.profile
fi

# Need shared library path for 'sudo' functions
export LD_LIBRARY_PATH=/home/smc/lib:/usr/local/lib

