annotate bin/runc @ 800:8970b3fbdfd7

<elliott> delquote 470
author HackBot
date Sun, 14 Oct 2012 01:13:29 +0000
parents 85729b555d76
children
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
679
6d9379ee7982 <fizzie> run echo -e '#!/bin/bash\nt=`tempfile`\necho "$@" | gcc -o $t -x c - 2>/dev/null && $t\nrm $t' > bin/runc
HackBot
parents: 677
diff changeset
2 t=`tempfile`
783
85729b555d76 <fizzie> run sed -ie 's/echo/echo -e/' bin/runc
HackBot
parents: 679
diff changeset
3 echo -e "$@" | gcc -o $t -x c - 2>/dev/null && $t
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
4 rm $t