From c46339470309c24b142e1f66bece51db60bde64f Mon Sep 17 00:00:00 2001 From: Jannis Hoffmann Date: Mon, 15 Jul 2024 15:49:29 +0200 Subject: move shell scripts into the script directory This corrects a build system issue as the associated build file was already in the script directory. --- script/sslconnect.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 script/sslconnect.sh (limited to 'script/sslconnect.sh') diff --git a/script/sslconnect.sh b/script/sslconnect.sh new file mode 100644 index 0000000..a28aef6 --- /dev/null +++ b/script/sslconnect.sh @@ -0,0 +1,10 @@ +#!/bin/sh +host=${1-0} +port=${2-465} +args="" +if [ $# -gt 2 ] +then + shift; shift + args="$@" +fi +exec sslclient -XRHl0 $args -- "$host" "$port" mconnect-io -- cgit v1.2.3