mirror of
https://github.com/pyenv/pyenv.git
synced 2025-02-02 05:10:51 +00:00
16 lines
270 B
Text
16 lines
270 B
Text
|
#!/bin/bash
|
||
|
|
||
|
RBENV_VERSION="$(rbenv-version)"
|
||
|
|
||
|
for path in ~/.rbenv/versions/*; do
|
||
|
if [ -d "$path" ]; then
|
||
|
version="${path##*/}"
|
||
|
|
||
|
if [ "$version" == "$RBENV_VERSION" ]; then
|
||
|
echo "* ${version##*/}"
|
||
|
else
|
||
|
echo " ${version##*/}"
|
||
|
fi
|
||
|
fi
|
||
|
done
|