This is a web based clipboard. To paste stuff, do something like this:
echo helloworld | curl -X POST --data @- https://paste.jovoro.ch/
You will get an identification string. When handling newlines or when sending binary data, use the --data-binary option for curl.
To retrieve stuff do:
curl https://paste.jovoro.ch/?id=<identification-string>
Aliases for csh:
alias pst 'curl -X POST --data-binary @- https://paste.jovoro.ch/' alias ret 'curl https://paste.jovoro.ch/\?id=\!:1'Aliases/functions for bash:
alias pst='curl -X POST --data-binary @- https://paste.jovoro.ch/'
ret() { curl https://paste.jovoro.ch/\?id=${1}; }