diff options
author | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-15 15:49:29 +0200 |
---|---|---|
committer | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-15 15:49:29 +0200 |
commit | c46339470309c24b142e1f66bece51db60bde64f (patch) | |
tree | ba1d65b123cb4f686ce045810912fb9957f8ff5d /script/sslconnect.sh | |
parent | 5e84d7b76ce1cccdaf0900d62a94d0d1d88cdd62 (diff) |
move shell scripts into the script directorymeson
This corrects a build system issue as the associated build file was
already in the script directory.
Diffstat (limited to 'script/sslconnect.sh')
-rw-r--r-- | script/sslconnect.sh | 10 |
1 files changed, 10 insertions, 0 deletions
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 |