Displaying 1 result from an estimated 1 matches for "gs_r_out".
Did you mean:
gpr_out
2004 May 23
1
Running scripts automatically from Rgui (Windows)
...hat I try to run...
-------------
@echo off
copy %1 .Rprofile > copy-output.txt
shift
:Loop
IF "%1" == "" GOTO Continue
set %1=%2
shift
shift
GOTO Loop
:Continue
cat.exe > GS_R_in.txt
"C:\Program Files\R\rw1090\bin\Rgui.exe" --no-save
--no-restore
cat.exe < GS_R_out.txt
del GS_R_in.txt GS_R_out.txt copy-output.txt .Rprofile
-----------