view bin/paste @ 11258:edaf8efd6e21

<oerjan> learn This is something people on the channel like to talk about. We\'re often unsure what this is, though.
author HackBot
date Sat, 09 Dec 2017 11:45:07 +0000
parents 916b38c83c3b
children 0d78afb61c51
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/tmp/paste

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