zettoIT bin
An empty bin was created for you. The first HTTP POST or PUT request can upload data. All following requests can only read the uploaded data.
To change the default expiration date, you can use the `?ttl=
After uploading data, you can access it by accessing <%= bin_url %> with an optional file extension that suits the data that you uploaded.
Upload a image
$ curl -H "Content-Type: image/png" -T my-image.png <%= bin_url %>`
Upload a big file
$ curl -X POST -H "Content-Type: application/gzip" -T my-file.tar.gz <%= bin_url %>
Pipe into curl
$ tar -cz my-files | curl -H "Content-Type: application/gzip" -T - <%= bin_url %>
Encryption
$ tar -cz my-files | gpg -co tmp.tar.gz $ curl -H "Content-Type: application/octet-stream" -T tmp.tar.gz <%= bin_url %> $ curl <%= bin_url %> | gpg -d - | tar -xzf