changeset 11876:3a6f3f0df04f draft

<ais523> ` sed -i -e \'s/echo/echo -n/\' \'bin/!\'
author HackEso <hackeso@esolangs.org>
date Wed, 17 Jul 2019 22:26:09 +0000
parents 79be353c9afe
children 7d758aa5fd3d
files bin/!
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/bin/!	Wed Jul 17 22:21:25 2019 +0000
+++ b/bin/!	Wed Jul 17 22:26:09 2019 +0000
@@ -1,4 +1,4 @@
 #!/bin/bash
-CMD=`echo "$1" | cut -d' ' -f1`
-ARG="$(echo "$1" | cut -d' ' -f2-)"
+CMD=`echo -n "$1" | cut -d' ' -f1`
+ARG="$(echo -n "$1" | cut -d' ' -f2-)"
 exec ibin/$CMD "$ARG$2"
\ No newline at end of file