I want to use nc as a simple TCP/IP server. So far I run it using:
nc
$ nc -k -l 3000 > temp.tmp
This works, but writes all the re
On the receiver:
$ nc -p 3000 -l | tar -x
On the sender:
$ tar -c * | nc 3000