view bin/paste @ 5469:b22df01ae041

<int-e> learn Me is a proud member of the tEaM.
author HackBot
date Sun, 07 Jun 2015 18:48:56 +0000
parents 1bc67ded06c4
children
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