annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
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
HackBot
parents:
diff changeset
1 #!/bin/bash
9cfc3dbaf48e <fizzie> run echo -e '#!/bin/bash\n$t=`tempfile`\necho "$@" | gcc -o $t -x c - 2>/dev/null && $t\nrm $t' > bin/runc
HackBot
parents:
diff changeset
2 $t=`tempfile`
9cfc3dbaf48e <fizzie> run echo -e '#!/bin/bash\n$t=`tempfile`\necho "$@" | gcc -o $t -x c - 2>/dev/null && $t\nrm $t' > bin/runc
HackBot
parents:
diff changeset
3 echo "$@" | gcc -o $t -x c - 2>/dev/null && $t
9cfc3dbaf48e <fizzie> run echo -e '#!/bin/bash\n$t=`tempfile`\necho "$@" | gcc -o $t -x c - 2>/dev/null && $t\nrm $t' > bin/runc
HackBot
parents:
diff changeset
4 rm $t