Sha256: 2d608133736537193f156376e3becac1086999e731e87e6738fb6ba9cf74cfcb

Contents?: true

Size: 1.14 KB

Versions: 5

Compression:

Stored size: 1.14 KB

Contents

#!/usr/bin/env bash
rvm_base_except="selector"
source "$rvm_scripts_path/base"

rvm_help_path="${rvm_help_path:-"$rvm_path/help"}"

command="$(echo $* | awk '{print $1}')"
action="$(echo $* | awk '{print $2}')"
# Reserved for future use:
args=$(echo "$*" | awk '{$1=""; $2="" ; print}' | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')

if [[ ! -z "$command" ]] && [[ -s "${rvm_help_path}/${command}" ]] ; then
  if [[ ! -z "$action" ]] && [[ -s "${rvm_help_path}/${command}/${action}" ]] ; then
    cat "${rvm_help_path}/${command}/${action}" | ${PAGER:-less}
  else
    cat "${rvm_help_path}/${command}" | ${PAGER:-less}
  fi
else
  cat "${rvm_path:-$HOME/.rvm}/README" | ${PAGER:-less}
  $rvm_scripts_path/log "info" "\nCommands available with 'rvm help':\n\n $(builtin cd "${rvm_help_path}" ; \ls | \tr "\n" ' ')"
fi

$rvm_scripts_path/log "info" "\nFor additional information please visit RVM's documentation website:\n\n    http://rvm.beginrescueend.com/"
$rvm_scripts_path/log "info" "\nIf you still cannot find what an answer to your question, find me 'wayneeseguin' in #rvm on irc.freenode.net:\n\n    http://webchat.freenode.net/?channels=rvm\n"

exit $?

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rvm-1.0.0 scripts/help
rvm-0.1.47 scripts/help
rvm-0.1.46 scripts/help
rvm-0.1.45 scripts/help
rvm-0.1.44 scripts/help