view bin/paste @ 9194:e479c5d33966

<oerjan> learn \xc5\x93rjan is oerjan and \xc3\xb8rjan\'s superhero third cousin (once removed) from Qu\xc3\xa9bec. he got his cheesy powers by falling into a giant poutine bowl.
author HackBot
date Sat, 08 Oct 2016 23:18:25 +0000
parents 56dcce63901b
children 916b38c83c3b
line wrap: on
line source

#!/bin/bash
if [ "$1" ] && url "$1" 2>/dev/null # Save making a file when it already exists.
then
    true
else
    PASTENUM="$RANDOM"

    mkdir -p $HACKENV/paste

    url paste/paste."$PASTENUM"
    cat -- "${1--}" > $HACKENV/paste/paste."$PASTENUM"
fi