pyenv/libexec/rbenv-commands

51 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

#!/usr/bin/env bash
# Summary: List all available rbenv commands
# Usage: rbenv commands [--sh|--no-sh]
#
# List names of all rbenv commands, including 3rd-party ones found in the
# PATH or in rbenv plugins. With `--sh`, list only shell commands.
#
# This functionality is mainly meant for scripting. To see usage help for
# rbenv, run `rbenv help`.
set -e
[ -n "$RBENV_DEBUG" ] && set -x
2011-08-03 22:20:01 -05:00
2011-09-13 12:48:49 -05:00
# Provide rbenv completions
if [ "$1" = "--complete" ]; then
2011-09-13 13:12:04 -05:00
echo --sh
echo --no-sh
2011-09-13 12:48:49 -05:00
exit
fi
exclude_shell=
command_prefix="rbenv-"
2011-08-23 11:34:03 -05:00
if [ "$1" = "--sh" ]; then
command_prefix="rbenv-sh-"
2011-08-23 11:34:03 -05:00
shift
2011-09-13 12:48:49 -05:00
elif [ "$1" = "--no-sh" ]; then
exclude_shell=1
2011-09-06 22:07:05 -05:00
shift
fi
2011-08-03 22:20:01 -05:00
shopt -s nullglob
{
PATH_remain="$PATH"
# traverse PATH to find "rbenv-" prefixed commands
while true; do
path="${PATH_remain%%:*}"
if [ -n "$path" ]; then
for rbenv_command in "${path}/${command_prefix}"*; do
rbenv_command="${rbenv_command##*rbenv-}"
if [[ -z $exclude_shell || $rbenv_command != sh-* ]]; then
echo "${rbenv_command##sh-}"
2011-08-23 11:34:03 -05:00
fi
done
fi
[[ $PATH_remain == *:* ]] || break
PATH_remain="${PATH_remain#*:}"
2011-08-03 22:20:01 -05:00
done
} | sort | uniq