view bin/runce @ 1993:a7cc9b351f25

<oerjan> gcc -o bin/fueue fueue.c
author HackBot
date Sat, 02 Feb 2013 22:56:28 +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