-
-
Save tmastny/4967c70ea9d11ab2a86ca8113dc11af1 to your computer and use it in GitHub Desktop.
put in bin for nice R executable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
RLINK='/Library/Frameworks/R.framework/Resources/bin/R' | |
if [ -z "$*" ] | |
then | |
# /usr/local/bin/R --no-save --no-restore-data --quiet | |
$RLINK --no-save --no-restore-data --quiet | |
else | |
# /usr/local/bin/R "$@" | |
$RLINK "$@" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment