rtfm 297 B

123456789101112131415161718192021
  1. #!/usr/bin/env bash
  2. rvm_url="https://rvm.io/"
  3. source "$rvm_path/scripts/functions/logging"
  4. if builtin command -v open >/dev/null ; then
  5. open "$rvm_url"
  6. elif builtin command -v xdg-open >/dev/null ; then
  7. xdg-open "$rvm_url"
  8. else
  9. rvm_log "Please RTFM at the URL $rvm_url"
  10. fi
  11. exit $?