comparison bin/! @ 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
comparison
equal deleted inserted replaced
11875:79be353c9afe 11876:3a6f3f0df04f
1 #!/bin/bash 1 #!/bin/bash
2 CMD=`echo "$1" | cut -d' ' -f1` 2 CMD=`echo -n "$1" | cut -d' ' -f1`
3 ARG="$(echo "$1" | cut -d' ' -f2-)" 3 ARG="$(echo -n "$1" | cut -d' ' -f2-)"
4 exec ibin/$CMD "$ARG$2" 4 exec ibin/$CMD "$ARG$2"