view bin/runce @ 994:ce3361c199b9

<shachaf> cat quotes | paste
author HackBot
date Sun, 09 Dec 2012 09:37:23 +0000
parents 85729b555d76
children
line wrap: on
line source

#!/bin/bash
t=`tempfile`
echo "$@" | gcc -o $t -x c - 2>/dev/null && $t
rm $t