view bin/paste @ 11795:44ce94affffd draft

<oerjan> learn BABA IS \xc2\xaf\\(\xc2\xb0\xe2\x80\x8b_o)/\xc2\xaf
author HackEso <hackeso@esolangs.org>
date Wed, 24 Apr 2019 19:45:33 +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