From cbf005d2383f85ffc234df99f3f8b067332e6715 Mon Sep 17 00:00:00 2001 From: "Helmut K. C. Tessarek" Date: Sun, 7 Jul 2019 20:47:21 -0400 Subject: [PATCH] change helper functions to match other script for consistency --- jnrmor | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jnrmor b/jnrmor index 0cd814f..765a529 100755 --- a/jnrmor +++ b/jnrmor @@ -153,19 +153,19 @@ fi function debug { if [ "$dflag" == "1" ]; then - echo "[debug] $1" + echo "[debug] $@" fi } function info { if [ "$qflag" != "1" ]; then - echo "$1" + echo "$@" fi } function info_n { if [ "$qflag" != "1" ]; then - echo -n "$1" + echo -n "$@" fi }