You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 line
157 B

  1. #!/usr/bin/env bash
  2. # Usage: pyenv echo [-F<char>] VAR
  3. if [[ $1 == -F* ]]; then
  4. sep="${1:2}"
  5. echo "${!2}" | tr "${sep:-:}" $'\n'
  6. else
  7. echo "${!1}"
  8. fi