Displaying 1 result from an estimated 1 matches for "inputx".
Did you mean:
inputs
2010 May 02
1
Shell command help
...Community,
I am trying to run a command line in R that will open an external program, have it import a specific input file, run the program, then close the program. The command line that I got from the developer of the model to do this looks like what you see below:
c:\programx.exe -import 'inputx.inp' -run -quit
I have been trying to use shell() or shell.exec() to run this in R. I can get R to open the program but I have not been able to do the rest of the steps.
I have been able to open the model using :
>shell('"C:\\programx.exe"')
or
>shell.exec(&q...