in reply to Re: Perl & R ?
in thread Perl & R ?

I am working on linux machine and i cannot install the R/Splus-Perl Interface because I need root access for it!!i tried the fork code you gave me. I am getting this error

Fatal error: you must specify `--save', `--no-save' or `--vanilla' Fatal error: you must specify `--save', `--no-save' or `--vanilla' Fatal error: you must specify `--save', `--no-save' or `--vanilla' Broken pipe
is this error because of the special shell character > , if so how to solve it

Thank You

Replies are listed 'Best First'.
Re^3: Perl & R ?
by BUU (Prior) on Mar 29, 2005 at 06:43 UTC
    Just curiously, have you tried:
    system("R commands.r")
      Yes. I did. That was the first thing i tried.
        how about...
        system "R --no-save < commands.R 2>&1 > /dev/null";