changeset 783:85729b555d76

<fizzie> run sed -ie 's/echo/echo -e/' bin/runc
author HackBot
date Sat, 06 Oct 2012 21:14:24 +0000
parents ae9b5017f05f
children cdc233220cc4
files bin/runc bin/runce
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bin/runc	Sat Oct 06 20:46:33 2012 +0000
+++ b/bin/runc	Sat Oct 06 21:14:24 2012 +0000
@@ -1,4 +1,4 @@
 #!/bin/bash
 t=`tempfile`
-echo "$@" | gcc -o $t -x c - 2>/dev/null && $t
+echo -e "$@" | gcc -o $t -x c - 2>/dev/null && $t
 rm $t
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bin/runce	Sat Oct 06 21:14:24 2012 +0000
@@ -0,0 +1,4 @@
+#!/bin/bash
+t=`tempfile`
+echo "$@" | gcc -o $t -x c - 2>/dev/null && $t
+rm $t