我有这个管道:
( tail -f ${named_pipe} | nc localhost ${port} | ql_conditional_release &> "$HOME/debug.log" & disown; ) &> /dev/null
所以我正在从 netcat 连接中读取内容。
我如何写入同一个连接?应该是双向的。
基本上,如果函数中满足条件ql_conditional_release
,我想响应/写回相同的套接字连接。但不知道该怎么做。
答案1
使脚本回显到 ${named_pipe} 中。