view bin/runc @ 677:9cfc3dbaf48e

<fizzie> run echo -e '#!/bin/bash\n$t=`tempfile`\necho "$@" | gcc -o $t -x c - 2>/dev/null && $t\nrm $t' > bin/runc
author HackBot
date Sun, 02 Sep 2012 15:40:05 +0000
parents
children 6d9379ee7982
line wrap: on
line source

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