redish/lib/util.sh
2020-05-02 14:34:34 -05:00

8 lines
141 B
Bash

build_prompt() {
if (( table )); then
printf '%s:%d[%d]> ' "$host" "$port" "$table"
else
printf '%s:%d> ' "$host" "$port"
fi
}