mirror of
https://github.com/pyenv/pyenv.git
synced 2026-09-10 07:36:16 -04:00
10 lines
157 B
Bash
Executable file
10 lines
157 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Usage: pyenv echo [-F<char>] VAR
|
|
|
|
if [[ $1 == -F* ]]; then
|
|
sep="${1:2}"
|
|
echo "${!2}" | tr "${sep:-:}" $'\n'
|
|
else
|
|
echo "${!1}"
|
|
fi
|