Re: netcat man page: -e emulation
How about #!/bin/ksh nc -l localhost 1234 |& exec 0<&p 1>&p # Rest of the script here. This syntax is pretty new to me so I'm not sure of pros and cons.
netcat man page: -e emulation
Hi, The traditional netcat had a -e option to "Execute the specified command, using data from the network for stdin, and sending stdout and stderr to the network..." Whilst I can understand that this option might not be desirable to be included in the binary (for security reason ?), I occas