From 8ff1798f71a09735163862775cda86a0ce2b4ab8 Mon Sep 17 00:00:00 2001 From: g0tmi1k Date: Fri, 11 Nov 2022 00:36:53 +0000 Subject: [PATCH] Nicer formatting --- searchsploit | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/searchsploit b/searchsploit index dc7093693..9278844e9 100755 --- a/searchsploit +++ b/searchsploit @@ -545,8 +545,7 @@ function findresults() { RESULT="$( printf '%s\n' "${MIN}" "${VERSION}" "${MAX}" | sort -V )" ## Sub if sort -v isn't working? if (( $( echo "${MIN} <= ${VERSION}" | bc -l ) )) && (( $( echo "${MAX} >= ${VERSION}" | bc -l ) )); then ## ...else there is dpkg (if Debian) - if [[ "$( echo "${RESULT}" | head -n 1 )" == "${MIN}" ]] \ - && [[ "$( echo "${RESULT}" | tail -n 1 )" == "${MAX}" ]]; then + if [[ "$( echo "${RESULT}" | head -n 1 )" == "${MIN}" ]] && [[ "$( echo "${RESULT}" | tail -n 1 )" == "${MAX}" ]]; then [ -n "${ID}" ] \ && ID="${ID}|" ID="${ID}$( echo ${TITLE} | awk -F ',' '{print $1}' )"