pyenv/libexec/rbenv-completions

27 lines
562 B
Text
Raw Normal View History

2011-09-13 11:13:27 -04:00
#!/usr/bin/env bash
2012-12-29 23:05:04 -05:00
# Usage: rbenv completions <command> [arg1 arg2...]
2011-09-13 11:13:27 -04:00
set -e
[ -n "$RBENV_DEBUG" ] && set -x
COMMAND="$1"
if [ -z "$COMMAND" ]; then
rbenv-help --usage completions >&2
2011-09-13 11:13:27 -04:00
exit 1
fi
2015-11-20 09:12:10 -05:00
# Provide rbenv completions
if [ "$COMMAND" = "--complete" ]; then
exec rbenv-commands
fi
COMMAND_PATH="$(command -v "rbenv-$COMMAND" || command -v "rbenv-sh-$COMMAND")"
# --help is provided automatically
echo --help
if grep -iE "^([#%]|--|//) provide rbenv completions" "$COMMAND_PATH" >/dev/null; then
2011-09-13 11:13:27 -04:00
shift
exec "$COMMAND_PATH" --complete "$@"
fi