ctpv/end.sh
2022-05-26 02:57:50 +05:00

7 lines
137 B
Bash

fifo="$(get_fifo "$1")"
[ -e "$fifo" ] || exit 1
# sending zero byte tells listener to stop
fifo_open "$fifo" && printf '\0' > "$fifo"