Enter the text you want to share

(30000k chars max)


Time to live:
Hint 1 : put the following oneliner in your .bashrc to use "6p <file>" or "echo hi | 6p" or "cat << EOF | 6p" (thanks, Habbie and Reinhart):

6p() { if [ -t 0 ]; then curl -s -D - -o /dev/null -F "upload=@${1};type=application/octet-stream" -F ttl=604800 https://paste.0x5e.eu/; else curl -s -D - -o /dev/null -F "content=<${1--}" -F ttl=604800 https://paste.0x5e.eu/; fi | awk 'BEGIN{IGNORECASE=1} /^location:/ {gsub("\r",""); print "https://paste.0x5e.eu/" $2}'; }

Hint 2 : Add ?smart behind the result URL and some post-processing is enabled (eq. syntax highlighting)