From 233453267e20a3baedc350324daa73311a26c0ed Mon Sep 17 00:00:00 2001 From: RD WebDesign Date: Wed, 23 Nov 2022 15:33:49 -0300 Subject: [PATCH] Using `shift` to allow passing multiple arguments Signed-off-by: RD WebDesign --- pihole | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pihole b/pihole index ed8eb856..ca80bff8 100755 --- a/pihole +++ b/pihole @@ -425,7 +425,7 @@ tricorderFunc() { } updateCheckFunc() { - "${PI_HOLE_SCRIPT_DIR}"/updatecheck.sh "$1" + "${PI_HOLE_SCRIPT_DIR}"/updatecheck.sh "$@" exit 0 } @@ -553,7 +553,7 @@ case "${1}" in "restartdns" ) restartDNS "$2";; "-a" | "admin" ) webpageFunc "$@";; "checkout" ) piholeCheckoutFunc "$@";; - "updatechecker" ) updateCheckFunc "$2";; + "updatechecker" ) shift; updateCheckFunc "$@";; "arpflush" ) arpFunc "$@";; "-t" | "tail" ) tailFunc "$2";; esac