How to write a echo server bash script using tools like nc, echo, xargs, etc capable of simultaneously processing requests from multiple clients each with durable connection
what about...
#! /bin/sh while :; do /bin/nc.traditional -k -l -p 3342 -c 'xargs -n1 echo' done