The R Project SVN R

Rev

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

Rev Author Line No. Line
49121 ripley 1
# ${R_HOME}/bin/Rdconv -*- sh -*- for installing add-on packages
2195 hornik 2
 
49121 ripley 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
2195 hornik 9
 
49121 ripley 10
## NB: Apple's ICU needs LC_COLLATE set when R is started.
77228 maechler 11
echo 'tools:::.Rdconv()' | R_DEFAULT_PACKAGES= LC_COLLATE=C "${R_HOME}/bin/R" --vanilla --no-echo --args ${args}