redish/lib/util.sh

13 lines
187 B
Bash
Raw Normal View History

2020-05-02 19:34:34 +00:00
build_prompt() {
if (( table )); then
printf '%s:%d[%d]> ' "$host" "$port" "$table"
else
printf '%s:%d> ' "$host" "$port"
fi
}
2020-05-02 22:32:34 +00:00
cleanup() {
exec {sock}<&-
printf '\n'
}