copyclip.io is a super fast copy/paste and file transfer tool
Simply navigate to any url, such as copyclip.io/foobar, and paste or upload your file.
Accessing that url again will let you download what you put up! From any device!
You can go to copyclip.io/view/[yourkey] to view instead of download supported files in your browser (pdf, images,
etc.)
You can also send and download data through command line with simple HTTP requests:
Uploading:
curl copyclip.io/placetoupload123 -F "data=this is the text to upload"
curl copyclip.io/placetoupload123 -F "file=@file.txt"
Note: The form field name can be anything, as long as there is only one field
The optional expires
parameter can specify a expiration time. It is formatted like {n}{unit}. Expiration is never by default
curl copyclip.io/placetoupload123 -F "file=@file.txt" -F "expires=5w"
Unit |
Meaning |
Example |
m |
minutes |
30m |
h |
hours |
1h |
d |
days |
10d |
w |
weeks |
2w |
Downloading
wget copyclip.io/placetoupload123
or
curl -OJ copyclip.io/placetoupload123
-OJ arguments let you keep the original filename when saving