run-R 122 B

12345678910
  1. #!/bin/bash
  2. R_FLAGS="-no-save -f"
  3. if [ "$1" = "-native" ]; then
  4. shift
  5. R $R_FLAGS $*
  6. else
  7. ./R.manifest $R_FLAGS $*
  8. fi