From: Silvio Rhatto Date: Sat, 4 Mar 2023 17:07:49 +0000 (-0300) Subject: Fix: coding style X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;p=ssl-wrapper.git Fix: coding style --- diff --git a/ssl b/ssl index aa93c70..f043fb1 100755 --- a/ssl +++ b/ssl @@ -21,12 +21,12 @@ function usage { function retrieve { REMHOST=$1 REMPORT=${2:-443} - + shift 2 OPTS="$*" - echo |\ - openssl s_client -connect ${REMHOST}:${REMPORT} $OPTS 2>&1 |\ + echo | \ + openssl s_client -connect ${REMHOST}:${REMPORT} $OPTS 2>&1 | \ sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' }