Anthony Keane
Anthony Keane

Reputation: 821

Running an Rscript on Mac OS X

I have a BATCH File script on a Windows machine that consists of the following line:

c:\R\bin\Rscript.exe "c:\Users\user\Documents\Shares.R" 

I want to do the same thing but using Mac OS X at the moment I am using Automator => Run Shell Script and the following line:

open "/usr/bin/Rscript" "/Users/usr/Documents/Shares.R"

It opens R, finds the file and displays the R code. I want the R code contained in the script to run (like it does in Windows).

Any ideas?

Anthony.

Upvotes: 6

Views: 11562

Answers (2)

Farbod Aprin
Farbod Aprin

Reputation: 1186

On windows:

C:\Program Files\R\R-3.x.x\bin\Rscript.exe 

On Linux:

rwrapper.executable=/usr/lib/R/bin/Rscript

On Mac:

/usr/bin/Rscript "/Users/usr/Documents/Shares.R" 

Upvotes: 0

Colin Hebert
Colin Hebert

Reputation: 93187

This will be enough :

/usr/bin/Rscript "/Users/usr/Documents/Shares.R"

Upvotes: 8

Related Questions