reg.t0.vc
NAME
t0reg: command line key-value registers
USAGE
<command> | curl -F 'NMAY=<-' https://reg.t0.vc
or upload from the web:
The key NMAY was randomly chosen for you.
DESCRIPTION
This lets you POST data to a key of your choice.
You can then GET the data at that key.
This is useful for moving data / files between servers.
All the data is stored temporarily.
Make your key random if you don't want people guessing.
EXAMPLES
~$ echo "hello world" | curl -F 'NMAY=<-' https://reg.t0.vc
~$ curl https://reg.t0.vc/NMAY
hello world
Add this to your .bashrc:
alias push="curl -F 'NMAY=<-' https://reg.t0.vc"
alias pull="curl https://reg.t0.vc/NMAY"
Now you can pipe directly into push!
Get the data back with pull.
To move a file:
~$ cat kitten.jpg | base64 | push
~$ pull | base64 -d > kitten.jpg
SOURCE CODE
https://txt.t0.vc/SBSU
SEE ALSO
https://txt.t0.vc
https://pic.t0.vc
https://url.t0.vc