mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
6938692ca2
/usr/bin/env seems to have problems with arguments to bash on some platforms. To bypass this, use set -e instead.
12 lines
189 B
Bash
Executable file
12 lines
189 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
shopt -s nullglob
|
|
|
|
{ for path in ${PATH//:/$'\n'}; do
|
|
for command in "${path}/rbenv-"*; do
|
|
echo "${command##*rbenv-}"
|
|
done
|
|
done
|
|
} | sort | uniq
|
|
|