combine netcat with chat on bash for automatic udp responses
问题 I want to combine "chat" and "nc" on linux, so I will create a tiny udp server that responds on a specific request and sends back an answer. In fact I want to redirect the stdout of "nc" to the stdin of "chat" and vice versa. My first attempt was: nc -w 3000 -u -n -l -p 30000 >&1111 <2222 & chat -V 'request' 'answer' >&2222 <1111 But it didn't work. 回答1: use socat instead of netcat. Something like this : socat UDP-LISTEN:5555 EXEC:"chat -sv ping pong",pty To test it, you can open another