forked from rvm/rvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp
executable file
·68 lines (56 loc) · 1.29 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env bash
rvm_base_except="selector"
source "$rvm_scripts_path/base"
source "$rvm_scripts_path/functions/version"
__rvm_help_find()
{
\typeset _full_name
\typeset -a _full_paths
_full_name=""
_full_paths=()
_matched=""
case "$1" in
(*/*) return 1 ;;
esac
# start with shortest, build path and prepend it to beginning
while (( $# > 0 ))
do
_full_name="${_full_name:-}${1:-}"
_full_paths=( "${_full_name}.md" "${_full_paths[@]}" )
_full_name="${_full_name:-}/"
shift
done
# check longest paths first
for _full_name in "${_full_paths[@]}"
do
if
[[ -n "${_full_name}" && -s "${rvm_help_path}/${_full_name}" ]]
then
echo "${rvm_help_path}/${_full_name}"
return 0
elif
[[ -n "${_full_name}" && -s "${rvm_docs_path}/${_full_name}" ]]
then
echo "${rvm_docs_path}/${_full_name}"
return 0
fi
done
return 1
}
__rvm_help()
{
\typeset _matched
__rvm_print_headline
if
_matched="$(__rvm_help_find "$@")"
then
__rvm_pager_or_cat_v "${_matched}"
else
[[ -z "$1" ]] || rvm_error "Documentation for 'rvm $*' not found"
__rvm_pager_or_cat_v "${rvm_path:-$HOME/.rvm}/help/index.txt"
fi
rvm_log "
For additional documentation please visit $(__rvm_version_website)
"
}
__rvm_help "$@"