le/lib/util
fbt 0cd6b1c441 syntax
Signed-off-by: fbt <fbt@fleshless.org>
2018-08-31 05:46:31 +03:00

18 lines
164 B
Bash

#!/syntax/bash
err() {
printf '%s\n' "$*" >&2
}
msg() {
printf '%s\n' "$*"
}
set_default() {
declare -n _vref=$1
if ! [[ "$_vref" ]]; then
_vref=$2
fi
}