diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-09-23 01:36:53 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-09-23 01:36:53 +0000 |
commit | 8c7499bdfa85657ea6c2517ada0ef4a4db489beb (patch) | |
tree | 1c37a6088704b234484b1352cd1f882fb2a253ad /math/R-project/files/R | |
parent | Catch up with Wnn6-lib update. (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_1_1'.release/4.1.1
Diffstat (limited to 'math/R-project/files/R')
-rw-r--r-- | math/R-project/files/R | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/math/R-project/files/R b/math/R-project/files/R deleted file mode 100644 index 9b6eedb5a3fa..000000000000 --- a/math/R-project/files/R +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/sh -# Shell wrapper for R executable. - -RHOME=PREFIX/share/R -export RHOME - -ARG=$1 -case ${ARG} in - RHOME) - echo ${RHOME}; exit 0 ;; - CMD) - shift; PATH=$PATH:$RHOME/cmd:$RHOME/etc exec $* ;; - SHLIB|COMPILE|INSTALL|REMOVE) - shift; exec sh ${RHOME}/etc/${ARG} $* ;; - -d|--debugger) - exec $2 ${RHOME}/bin/R.binary ;; - -h|--help|-\?) - echo "Usage: R [OPTIONS] [< INFILE] [> OUTFILE]" - echo "" - echo "Options:" - echo " --save Do save data sets at the end of the session." - echo " --no-save Don't save them." - echo " --restore Do restore previously saved data sets at startup." - echo " --no-restore Don't restore them." - echo " --no-readline Don't use readline for command-line editing." - echo " --no-site-file Don't read the site-wide Rprofile." - echo " --no-init-file Don't read the .Rprofile or ~/.Rprofile files." - echo " -v N Set the vector heap size to N megabytes." - echo " -n N Set the number of cons cells to N." - echo " -h, --help, -? Print short help message and exit." - echo " -q, --quiet Make R run as quietly as possible." - echo " -V, --version Print version info and exit." - echo " -d NAME, --debugger NAME Run R through debugger NAME." - exit 0 ;; -esac - -# Default Printer Paper Size -# Choose one of the following -# R_PAPERSIZE="a4" -# R_PAPERSIZE="letter" -# R_PAPERSIZE="none" -R_PAPERSIZE=DEFAULTPAPER -export R_PAPERSIZE - -# Default Print Command -# Choose one of the following -# R_PRINTCMD="lpr" -# R_PRINTCMD="lp" -R_PRINTCMD=lpr -export R_PRINTCMD - -exec ${RHOME}/bin/R.binary $* |