The R Project SVN R

Rev

Rev 7002 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7002 Rev 7192
Line 105... Line 105...
105
  shift
105
  shift
106
done
106
done
107
 
107
 
108
# Startup
108
# Startup
109
if ${USE_R_ENVIRON}; then # use the one in current dir, or default
109
if ${USE_R_ENVIRON}; then # use the one in current dir, or default
110
  if [ -r .Renviron ]
110
  if [ -r ./.Renviron ]; then
111
  then . .Renviron
111
    . ./.Renviron
-
 
112
  else
112
  else [ -r ${R_ENVIRON} ] && . ${R_ENVIRON}
113
    [ -r ${R_ENVIRON} ] && . ${R_ENVIRON}
113
  fi
114
  fi
114
fi
115
fi
115
 
116
 
116
if test -z "${DBG}"; then
117
if test -z "${DBG}"; then
117
  exec ${R_HOME}/bin/${R_BINARY} @R_BATCHSAVE@ ${ARGS}
118
  exec ${R_HOME}/bin/${R_BINARY} @R_BATCHSAVE@ ${ARGS}