From 8cb55f5f95de6e937b9d7d61b4ab619b7886745b Mon Sep 17 00:00:00 2001 From: g0tmi1k Date: Fri, 11 Nov 2022 00:36:17 +0000 Subject: [PATCH] Update comments --- searchsploit | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/searchsploit b/searchsploit index a447826d2..f7ed8a1c6 100755 --- a/searchsploit +++ b/searchsploit @@ -45,14 +45,14 @@ COLOUR_OFF_GREP= COLOUR_ON_GREP= REGEX_GREP= -## Check if our grep supports --color -if grep --help 2>&1 | grep "[-]-color" >/dev/null 2>&1 ; then +## Check if our grep supports --color (BSD vs GNU) +if grep --help 2>&1 | grep "[-]-color" >/dev/null 2>&1; then COLOUR_OFF_GREP="--color=never" COLOUR_ON_GREP="--color=always" fi -## Check if our grep supports --perl-regexp -if grep --help 2>&1 | grep "[-]-perl-regexp" >/dev/null 2>&1 ; then +## Check if our grep supports --perl-regexp (BSD vs GNU) +if grep --help 2>&1 | grep "[-]-perl-regexp" >/dev/null 2>&1; then REGEX_GREP="-P" else REGEX_GREP="-E" @@ -543,7 +543,7 @@ function findresults() { && MIN=0 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 + ## 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 @@ -914,7 +914,7 @@ if [[ "${GETPATH}" -eq 1 ]]; then printf "%-${PADDING}s%s" echo "${name}: ${title}" echo " URL: https://www.exploit-db.com/${url}" - ## Handy when dong --mirror + ## Path is useful doing --mirror echo " Path: ${location}" echo " Codes: ${codes}" echo " Verified: ${verified}"