view paste/paste.12606 @ 2852:0eddfbd2e0af

<fizzie> gcc hello.c -o hello2 -nostdlib -Os -s -Wl,--entry,main && ./hello2; wc -c hello2 # close enough?
author HackBot
date Sun, 05 May 2013 15:45:49 +0000
parents 1bca98188e7f
children
line wrap: on
line source

#!/bin/bash
if [ ! "$1" ]
then
    PASTE=-
else
    PASTE="$1"
fi

PASTENUM="$RANDOM"

mkdir -p $HACKENV/paste

url paste/paste."$PASTENUM"
cat "$PASTE" > $HACKENV/paste/paste."$PASTENUM"