upaste: no-frills temporary pastebin

Paste your code/text here to share it with people. The generated link will be valid for approximately one hour. Use your hour wisely.

Syntax highlighting:
Upload text file: OR paste below:

Submit using cURL

Some examples:

<command> | curl -F text=@- https://upaste.de/
curl -F text=@<filename> -F type=<syntax> https://upaste.de

diff -u mydoc-final.tex mydoc-reallyfinal.tex | curl -F text=@- -F type=diff https://upaste.de/
curl -F text=@/etc/passwd https://upaste.de/

Here's a quick and dirty POSIX shell script you can use for submitting that uses cURL:

#!/bin/sh
case "$1" in
-h|--help)
    echo "Example: upaste [-t js] [test.js]"
    echo "Reads from stdin if no filename is supplied."
    exit
    ;;
-t)
    type=" -F type=$2"
    shift 2
    ;;
esac
curl -F text=@${1:--}$type https://upaste.de/

Privacy

Pastes are deleted forever once their hour is up (potentially with a few minutes of delay for technical reasons). There is no way to delete them earlier nor to recover them later. You have been warned.

We do not store any information you don't actively provide. No IP addresses are logged. We do not use any third-party tools or services, other than what is required to host a website in the first place, that could generate and/or store any additional data about your usage of this website.

Site maintained by JK