annotate bin/runc @ 998:ce6646114f58

<nortti> pastequotes
author HackBot
date Sun, 09 Dec 2012 20:48:02 +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