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/sslcat.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 script/sslcat.sh (limited to 'script/sslcat.sh') diff --git a/script/sslcat.sh b/script/sslcat.sh new file mode 100644 index 0000000..716c6ab --- /dev/null +++ b/script/sslcat.sh @@ -0,0 +1,10 @@ +#!/bin/sh +host=${1-0} +port=${2-443} +args="" +if [ $# -gt 2 ] +then + shift; shift + args="$@" +fi +exec sslclient -RHl0 $args -- "$host" "$port" sh -c 'exec cat <&6' -- cgit v1.2.3