An open API service indexing awesome lists of open source software.

https://github.com/hellodhlyn/hcp

Transfer files between devices via HTTP
https://github.com/hellodhlyn/hcp

Last synced: about 1 month ago
JSON representation

Transfer files between devices via HTTP

Awesome Lists containing this project

README

          

# hcp - copy via http

> Transfer files between devices via HTTP

## Usage

### Start server

```
docker run -p 8080:8080 hellodhlyn/hcp
```

### Transfer files

You can upload and download files using HTTP clients such as curl or wget.

For example:

```sh
# Upload
curl -F 'file=@/path/to/file' http:///

# Download
curl -o -f http:///
```