Re: [R] problem with command line arguments

2006-01-05 Thread Uwe Ligges
madhurima bhattacharjee wrote: Hello Everybody, I am running a R script through a perl code from command line. The perl script is like: my $cmd= 'R CMD BATCH D:/try5.R'; system($cmd); I run the perl code from command line. Now I want to pass some command line arguments to the R

[R] problem with command line arguments

2006-01-04 Thread madhurima bhattacharjee
Hello Everybody, I am running a R script through a perl code from command line. The perl script is like: my $cmd= 'R CMD BATCH D:/try5.R'; system($cmd); I run the perl code from command line. Now I want to pass some command line arguments to the R script. Its like the argv concept of perl. Do