Rev 12256 | Rev 20002 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#!/bin/sh# Shell wrapper for R executable.R_HOME_DIR=if test -n "${R_HOME}" && \test "${R_HOME}" != "${R_HOME_DIR}"; thenecho "WARNING: ignoring environment value of R_HOME"fiR_HOME=${R_HOME_DIR}export R_HOME## NOTE:## We must set this here rather than in the main binary.: ${R_LD_LIBRARY_PATH=${R_HOME}/bin:@R_LD_LIBRARY_PATH@}if test -z "${@shlibpath_var@}"; then@shlibpath_var@="${R_LD_LIBRARY_PATH}"else@shlibpath_var@="${R_LD_LIBRARY_PATH}:${@shlibpath_var@}"fiexport @shlibpath_var@usage="Usage: R [options] [< infile] [> outfile]or: R CMD command [arguments]Start R, a system for statistical computation and graphics, with thespecified options, or invoke an R tool via the \`R CMD' interface.Options:-h, --help Print short help message and exit--version Print version info and exitRHOME Print path to R home directory and exit--save Do save data sets at the end of the session--no-save Don't save them--no-environ Don't read the site and user environment files--no-site-file Don't read the site-wide Rprofile--no-init-file Don't read the .Rprofile or ~/.Rprofile files--restore Do restore previously saved data sets at startup--no-restore-data Don't restore previously saved data sets--no-restore-history Don't restore the R history file--no-restore Don't restore anything--vanilla Combine --no-save, --no-restore, --no-site-file,--no-init-file and --no-environ--no-readline Don't use readline for command-line editing--min-vsize=N Set vector heap min to N bytes; \`4M' = 4 MegaB--max-vsize=N Set vector heap max to N bytes;--min-nsize=N Set min number of cons cells to N--max-nsize=N Set max number of cons cells to N-q, --quiet Don't print startup message--silent Same as --quiet--slave Make R run as quietly as possible--verbose Print more information about progress-d, --debugger=NAME Run R through debugger NAME-g, --gui=TYPE Use TYPE as GUI; possible values are \`X11'(default), \`none' and \`gnome'Commands:BATCH Run R in batch modeCOMPILE Compile files for use with RSHLIB Build shared library for dynamic loadingINSTALL Install add-on packagesREMOVE Remove add-on packagesbuild Build add-on packagescheck Check add-on packagesLINK Front-end for creating executable programsRprof Post-process R profiling filesRdconv Convert Rd format to various other formatsRd2dvi Convert Rd format to DVI/PDFRd2txt Convert Rd format to pretty textRdindex Extract index information from Rd filesSd2Rd Convert S documentation to Rd formatThe first five tools (i.e., BATCH, COMPILE, SHLIB, INSTALL, and REMOVE)can also be invoked without the \`CMD' option.Please use \`R CMD command --help' to obtain further information aboutthe usage of \`command'.Report bugs to <r-bugs@r-project.org>."version="R REPLACE_BY_VERSION.Copyright (C) REPLACE_BY_YEAR R Development Core TeamR is free software and comes with ABSOLUTELY NO WARRANTY.You are welcome to redistribute it under the terms of the GNUGeneral Public License. For more information about these matters,see http://www.gnu.org/copyleft/gpl.html."### Argument loopargs=debugger=while test -n "${1}"; docase ${1} inRHOME|--print-home)echo "${R_HOME}"; exit 0 ;;BATCH|COMPILE|INSTALL|REMOVE|SHLIB)exec sh "${R_HOME}/bin/Rcmd" "${@}" ;;CMD)shift;exec sh "${R_HOME}/bin/Rcmd" "${@}" ;;--gnome)echo "option \`${1}' is defunct, use \`--gui=gnome'"exit 1;;-d|--debugger)if test -n "`echo ${2} | sed 's/^-.*//'`"; thendebugger="${2}"; shiftelseecho "ERROR: option \`${1}' requires an argument"exit 1fi;;--debugger=*)debugger=`echo "${1}" | sed -e 's/[^=]*=//'` ;;-h|--help)echo "${usage}"; exit 0 ;;--version)echo "${version}"; exit 0 ;;*)args="${args} ${1}" ;;esacshiftdone## R_HOME may have moved, so check## (or you get "GUI X11 is not supported")if test -x ${R_HOME}; then:elseecho "R_HOME (\`${R_HOME}') not found"exit 1fi## StartupR_binary="R.bin"if test -z "${debugger}"; thenexec ${R_HOME}/bin/${R_binary} @R_BATCHSAVE@ ${args}elseif test -n "${args}"; thenecho "*** Further command line arguments (\`${args}') disregarded"echo "*** (maybe use \`run ${args}' from *inside* ${debugger})"echo ""fiexec ${debugger} ${R_HOME}/bin/${R_binary}fi### Local Variables: ***### mode: sh ***### sh-indentation: 2 ***### End: ***