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

14 lines
129 B
Bash

###
# redis sock
###
exec {sock}<>/dev/tcp/"$host"/"$port"
###
# net wrappers
###
redis_send() {
printf %s "$@" >&"$sock"
}