Netcat响应套接字连接

时间:2019-06-05 01:17:28

标签: sockets netcat unix-socket

说我有一个像这样运行的netcat服务器:

nc -l 4444 | while read line; do
  # how can I write back to the socket?
done;

到目前为止,我在搜索中唯一发现的就是使用-c选项进行响应:

nc -l 4444 -c 'echo "this is the response"'

还有另一种写套接字连接的方法吗?

0 个答案:

没有答案