mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
12 lines
185 B
Text
12 lines
185 B
Text
|
#!/usr/bin/env bash -e
|
||
|
|
||
|
shopt -s nullglob
|
||
|
|
||
|
{ for path in ${PATH//:/$'\n'}; do
|
||
|
for command in "${path}/rbenv-"*; do
|
||
|
echo "${command##*rbenv-}"
|
||
|
done
|
||
|
done
|
||
|
} | sort | uniq
|
||
|
|