开启服务端
nc(netcat) -l(listen)
nc -l 9000 (服务端)
客户端
telnet 127.0.0.1 9000 (客户端)
这二个终端就可以相互通信
注: mac os 10.13 后就没有内置telnet函数,要新安装:
brew install telnet
nc(netcat) -l(listen)
nc -l 9000 (服务端)
telnet 127.0.0.1 9000 (客户端)
这二个终端就可以相互通信
注: mac os 10.13 后就没有内置telnet函数,要新安装:
brew install telnet