如何使用netcat接收txt文件的内容

how to receive contents of txt file using netcat

我试过用它来接收内容(并回显它),但我得到找不到文件的错误,有人能帮我吗?提前致谢

netcat -l 127.0.0.1 1234 < file.txt

编辑:

我理解错了,问题解决了!

输出到标准输出和file.txt:

netcat -l 127.0.0.1 1234 | tee file.txt