0.nc源码安装
下载:
wget -c -t 0 https://jaist.dl.sourceforge.net/project/netcat/netcat/0.7.1/netcat-0.7.1.tar.gz
安装:
===========================================
先启动接收方(ip 172.16.36.78)
nc -l 5555 | tar -zxvf -
报错及解决:
再启动发送方
tar -zcvf - ./11 | nc 172.16.36.78 5555
===========================================
1. nc -l 8888 > xxx
2. nc ip 8888 < xxx
参考:
https://www.cnblogs.com/lsdb/p/6874088.html