blob: 4b14fc521ed1c15dd8fab6b068b1005b5edadd92 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
to_host="127.0.0.1"
to_port="1234"
notify(){
if [ -n "$addlNotify" ]; then
tee >(nc -q 0 "${addlNotify%:*}" "${addlNotify##*:}") | nc -q 0 "${to_host}" "${to_port}" >/dev/null
else
nc -q 0 "${to_host}" "${to_port}" >/dev/null
fi
}
|