-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp
executable file
·41 lines (24 loc) · 1.04 KB
/
help
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env bash
rvm_base_except="selector"
source "$rvm_scripts_path/base"
args=($*)
command="${args[$__array_start]}"
args[$__array_start]=""
args=(${args[@]})
action="${args[$array_start]}"
args[$__array_start]=""
args=(${args[@]})
pager="${PAGER:-cat}"
if [[ -n "$command" && -s "${rvm_help_path}/${command}" ]] ; then
if [[ -n "$action" && -s "${rvm_help_path}/${command}/${action}" ]] ; then
eval "$pager '${rvm_help_path}/${command}/${action}'"
else
eval "$pager '${rvm_help_path}/${command}'"
fi
else
eval "$pager '${rvm_path:-$HOME/.rvm}/README'"
rvm_log "Commands available with 'rvm help':\n\n $(builtin cd "${rvm_help_path}" ; find . -maxdepth 1 -mindepth 1 -type f -print | \tr "\n" ' ' | sed -e 's#./##g')"
fi
rvm_log "For additional information please visit RVM's documentation website:\n\n https://rvm.beginrescueend.com/"
rvm_log "If 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 $?