pyenv/libexec/rbenv-shims
Mislav Marohnić bb6bccb782 tests galore
2013-03-07 15:07:32 -05:00

22 lines
380 B
Bash
Executable file

#!/usr/bin/env bash
# Summary: List existing rbenv shims
# Usage: rbenv shims [--short]
set -e
[ -n "$RBENV_DEBUG" ] && set -x
# Provide rbenv completions
if [ "$1" = "--complete" ]; then
echo --short
exit
fi
shopt -s nullglob
for command in "${RBENV_ROOT}/shims/"*; do
if [ "$1" = "--short" ]; then
echo "${command##*/}"
else
echo "$command"
fi
done | sort