前提:

将 172.16.88.1 上的 test 文件夹传送到 172.16.88.2 上

 

接收方 ---- 172.16.88.2

$  nc -l 9876 > test.tar

9876 为端口号

 

发送方 ---- 172.16.88.1

$ tar -zcvf - test | nc 172.16.88.2 9876

test 为待传文件夹

9876 为接收方监听的端口号

相关文章:

  • 2021-07-02
  • 2022-12-23
  • 2021-11-02
  • 2022-01-28
  • 2021-07-06
  • 2021-12-03
  • 2021-12-31
猜你喜欢
  • 2022-01-07
  • 2022-12-23
  • 2022-01-07
  • 2021-11-30
  • 2021-07-15
  • 2021-04-01
相关资源
相似解决方案