标签: sockets netcat unix-socket
说我有一个像这样运行的netcat服务器:
nc -l 4444 | while read line; do # how can I write back to the socket? done;
到目前为止,我在搜索中唯一发现的就是使用-c选项进行响应:
-c
nc -l 4444 -c 'echo "this is the response"'
还有另一种写套接字连接的方法吗?