cdrop
v0.0.1
Published
POST and GET files
Downloads
2
Readme
cdrop
POST a file to cdrop.
Then you can GET it once.
After that, it's deleted.
Makes it easy to share files with relative security.
POST a file to cdrop.
curl -F '[email protected]' localhost:8080
# or encrypt before sending
gpg -ac < README.md | curl -F f=@- localhost:8080
GET the file from cdrop.
curl localhost:8080/evi2_DA_v > README.md
# or decrypt after receiving
curl localhost:8080/evi2_DA_v | gpg -d > README.md