文件传输利器Croc

croc.jpg

Croc

https://gitee.com/weidong1987/croc/
Croc是允许任意两台计算机简单安全的传输文件和文件夹的工具,由于此工具是通过 relay server 方式来进行传送,所以指令会预设连到官方所搭建的服务器

安装以及使用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# linux中安装
curl https://getcroc.schollz.com | bash

# 发送端:注意不要关闭进程,等待文件接收端接受,接收完毕后自动关闭
~]# croc send test
Sending 'test' (0 B)
Code is: 7042-solo-sharp-flex
On the other computer run

croc 7042-solo-sharp-flex #文件接收命令

#接收端
~]# croc 7042-solo-sharp-flex
Accept 'test' (0 B)? (Y/n) y

Receiving (<-127.0.0.1:43692)
test 100% |████████████████████| ( 0/ 1 B)

本地部署Relay Server

执行croc relay,会在当前主机多个端口启动TCP server。可指定单一Port:croc relay –ports 3001

1
2
3
4
5
6
7
8
9
croc relay --ports 3001  #指定单一端口3001

# 传输文件
~]# croc --relay 127.0.0.1:3001 send test
Sending 'test' (0 B)
Code is: 6067-diesel-filter-sample
On the other computer run

croc --relay 127.0.0.1:3001 6067-diesel-filter-sample #文件接收命令,在其他终端中使用时需要将IP修改为发送者的IP