view bin/paste @ 3678:e4904d8fb386

<kmc> printf \'#!/usr/bin/env python\\nimport sys\\nimport unicodedata\\n\\nprint unicodedata.lookup(sys.argv[1]).encode("utf-8")\\n\' > bin/unicode && chmod +x bin/unicode
author HackBot
date Mon, 09 Sep 2013 22:56:08 +0000
parents 7914d7e0b500
children 03afb1619ef2
line wrap: on
line source

#!/bin/bash
if [ ! "$1" ]
then
    PASTENUM="$RANDOM"

    mkdir -p $HACKENV/paste

    url paste/paste."$PASTENUM"
    cat > $HACKENV/paste/paste."$PASTENUM"
else # Save making a file when it already exists.
    url "$1"
fi