Answers:
您正在使用错误的工具来执行此任务:使用类似ucspi-tcp之类的东西,尤其是tcpserver:
tcpserver waits for incoming connections and, for each connection,
runs a program of your choice.
您可能只是使用“&”作为后台进程(然后在进入下一个循环之前,它不等待返回),例如:
while true; do nc -l -p 2468 -e ./my_exe &; done