fftp
is the "Fast File Transport Protocol". It transfers files quickly between
computers on a network with low overhead.
FTP uses two ports which makes it inconvenient to reverse proxy. HTTP file servers might be too bulky for certain things, and they aren't as fast as FTP. Both use TCP. This is my duct tape and chicken wire compromise.
The client is ff
. The server is ffd
.
```sh
mkdir test echo "hi" > test/test.txt
ffd -d localhost:8080 test
ff localhost:8080 ls
ff localhost:8080 get test.txt ```