reg.t0.vc
NAME
    t0reg: command line key-value registers

USAGE
    <command> | curl -F 'TNBS=<-' https://reg.t0.vc
    or upload from the web:


The key TNBS 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 'TNBS=<-' https://reg.t0.vc ~$ curl https://reg.t0.vc/TNBS hello world Add this to your .bashrc: alias push="curl -F 'TNBS=<-' https://reg.t0.vc" alias pull="curl https://reg.t0.vc/TNBS" 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