summaryrefslogtreecommitdiff
path: root/math/R-project/files/R
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1999-09-14 22:58:51 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1999-09-14 22:58:51 +0000
commit0d24ce472965b1af574ee8eab914346a50d93ab0 (patch)
treefc04ac961d5044a7d4ac36140741f144e02c3080 /math/R-project/files/R
parent(forced commit) This is the official index file for 3.3-release. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_3_3_0'.release/3.3.0
Notes
Notes: svn path=/head/; revision=21673 svn path=/tags/RELEASE_3_3_0/; revision=21674; tag=release/3.3.0
Diffstat (limited to 'math/R-project/files/R')
-rw-r--r--math/R-project/files/R52
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 $*