diff options
Diffstat (limited to 'commands/whatweb')
-rwxr-xr-x | commands/whatweb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/whatweb b/commands/whatweb index 84130d5..afe2036 100755 --- a/commands/whatweb +++ b/commands/whatweb @@ -2,6 +2,6 @@ #wrapper for WhatWeb here=$(dirname `readlink -f $0`) whatweb_bin="$here/../repos/whatweb/whatweb" -[ -e "$whatweb_bin" ] || ( echo "!! Whatweb app does not exist" && exit 1 ) -[ "balls$1" = "balls" ] && ( echo "!! no host given" && exit 1) -exec $whatweb_bin -a 3 "$1" +[ ! -e "$whatweb_bin" ] && echo "!! Whatweb app does not exist" && exit 1 +[ -z "${1:-}" ] && echo "!! no host given" && exit 1 +exec $whatweb_bin -a 3 "$1" 2>&1 |