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
- Host: GitHub
- URL: https://github.com/hellodhlyn/hcp
- Owner: hellodhlyn
- Created: 2020-04-19T15:22:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-19T15:24:11.000Z (about 6 years ago)
- Last Synced: 2025-12-27T22:15:44.187Z (6 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:///
```