2019-04-23 10:23:33 -04:00
|
|
|
#!/usr/bin/env bash
|
2013-01-18 03:41:41 -05:00
|
|
|
# Summary: List all available pyenv commands
|
|
|
|
# Usage: pyenv commands [--sh|--no-sh]
|
|
|
|
|
2012-08-31 02:23:41 -04:00
|
|
|
set -e
|
|
|
|
[ -n "$PYENV_DEBUG" ] && set -x
|
|
|
|
|
|
|
|
# Provide pyenv completions
|
|
|
|
if [ "$1" = "--complete" ]; then
|
|
|
|
echo --sh
|
|
|
|
echo --no-sh
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2013-09-30 05:02:12 -04:00
|
|
|
if [ "$1" = "--sh" ]; then
|
|
|
|
sh=1
|
2012-08-31 02:23:41 -04:00
|
|
|
shift
|
2013-09-30 05:02:12 -04:00
|
|
|
elif [ "$1" = "--no-sh" ]; then
|
2012-08-31 02:23:41 -04:00
|
|
|
nosh=1
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
2013-09-30 05:02:12 -04:00
|
|
|
IFS=: paths=($PATH)
|
|
|
|
|
2012-08-31 02:23:41 -04:00
|
|
|
shopt -s nullglob
|
|
|
|
|
2013-09-30 05:02:12 -04:00
|
|
|
{ for path in "${paths[@]}"; do
|
2012-08-31 02:23:41 -04:00
|
|
|
for command in "${path}/pyenv-"*; do
|
|
|
|
command="${command##*pyenv-}"
|
|
|
|
if [ -n "$sh" ]; then
|
2017-06-23 18:12:09 -04:00
|
|
|
if [ "${command:0:3}" = "sh-" ]; then
|
|
|
|
echo "${command##sh-}"
|
2012-08-31 02:23:41 -04:00
|
|
|
fi
|
|
|
|
elif [ -n "$nosh" ]; then
|
2017-06-23 18:12:09 -04:00
|
|
|
if [ "${command:0:3}" != "sh-" ]; then
|
|
|
|
echo "${command##sh-}"
|
2012-08-31 02:23:41 -04:00
|
|
|
fi
|
|
|
|
else
|
2017-06-23 18:12:09 -04:00
|
|
|
echo "${command##sh-}"
|
2012-08-31 02:23:41 -04:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
} | sort | uniq
|