diff options
Diffstat (limited to 'files/bin')
-rwxr-xr-x | files/bin/domain-check | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/files/bin/domain-check b/files/bin/domain-check index a8c2893..dfdb27d 100755 --- a/files/bin/domain-check +++ b/files/bin/domain-check @@ -4,10 +4,13 @@ # # Author: Matty < matty91 at gmail dot com > # -# Current Version: 1.9 +# Current Version: 1.10 # # Revision History: # +# Version 1.10 +# Do not add extra line on quiet mode -- Silvio Rhatto <rhatto at riseup dot net> +# # Version 1.9 # Added support for .br domains -- Silvio Rhatto <rhatto at riseup dot net> # @@ -493,7 +496,9 @@ else fi # Add an extra newline -echo +if [ "${QUIET}" != "TRUE" ]; then + echo +fi ### Remove the temporary files rm -f ${WHOIS_TMP} |