From 567af6399d54a8f18df6c96138aaf6bce5a38394 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kjist=C3=B3f?= Date: Sun, 8 Oct 2017 03:32:03 +0200 Subject: [PATCH] removed implicit newline from type --- demo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo.sh b/demo.sh index f67ff0c..f2f2f08 100644 --- a/demo.sh +++ b/demo.sh @@ -17,7 +17,7 @@ function wait() } function type() -{ printf "$*\n" | simtyping; } +{ printf "$*" | simtyping; } function execute() { type "$@" && wait && eval "$@"; }