The R Project SVN R

Rev

Rev 53204 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
53204 ripley 1
## Rdiff -- diff 'without R version'
2
 
3
args=
4
while test -n "${1}"; do
5
  ## quote each argument here, unquote in R code.
6
  args="${args}nextArg${1}"
7
  shift
8
done
9
 
77228 maechler 10
R_DEFAULT_PACKAGES=NULL "${R_HOME}/bin/R" -e 'tools:::.Rdiff()' --vanilla --no-echo --args ${args}