12 lines
187 B
Bash
12 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'
|
|
}
|