From 8940c8e74e75e9f5d5a1f0ac1daf8beccab18d96 Mon Sep 17 00:00:00 2001 From: Kevin Baensch Date: Mon, 17 Apr 2023 10:53:38 +0200 Subject: [PATCH] Fix myssh not checking for -d and -c flags. --- script/myssh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/myssh b/script/myssh index ff17fe6..ec812a2 100755 --- a/script/myssh +++ b/script/myssh @@ -193,7 +193,7 @@ case "${MAIN_OPTION}" in exit 1 fi - while getopts "u:p:" o + while getopts "u:p:d:c:" o do case "$o" in u) TARGET_HOST_USERNAME="${OPTARG}" ;;