redish/lib/util.sh

13 lines
187 B
Bash

build_prompt() {
if (( table )); then
printf '%s:%d[%d]> ' "$host" "$port" "$table"
else
printf '%s:%d> ' "$host" "$port"
fi
}
cleanup() {
exec {sock}<&-
printf '\n'
}