changeset 4922:f4fa91b302cf

<oerjan> sed -i \'3s/1/1\\\\n/\' bin/interp
author HackBot
date Mon, 29 Sep 2014 08:09:41 +0000
parents 4920533b181b
children c9619115046f
files bin/interp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bin/interp	Mon Sep 29 08:05:28 2014 +0000
+++ b/bin/interp	Mon Sep 29 08:09:41 2014 +0000
@@ -1,4 +1,4 @@
 #!/bin/sh
 CMD=`echo "$1" | cut -d' ' -f1`
-ARG=`echo "$1" | cut -d' ' -f2-`
+ARG=`echo "$1\n" | cut -d' ' -f2-`
 exec ibin/$CMD "$ARG"
\ No newline at end of file