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 }