aboutsummaryrefslogtreecommitdiff
path: root/lib/vars.sh
blob: 4ae2ee740ed675731ecc3ee45c1431f764344e98 (plain) (blame)
1
2
3
4
5
readvar() {
  local var=$1;
  if [ ! "$var" ]; then _debug "readvar: missing arg: var"; exit 1; fi
  eval "echo \$$var"
}