diff options
author | makefu <root@pigstarter.de> | 2013-04-22 15:17:15 +0200 |
---|---|---|
committer | makefu <root@pigstarter.de> | 2013-04-22 15:17:15 +0200 |
commit | e703a1606471901008938c72900367770afee8f3 (patch) | |
tree | 13ba9821383c3b13daa385b9cd31956017c9cdb1 /Reaktor/commands/whatweb | |
parent | 0ab171778fe183b95d6cbf2998f986b866df1947 (diff) |
update Reaktor - add color translator
Diffstat (limited to 'Reaktor/commands/whatweb')
-rwxr-xr-x | Reaktor/commands/whatweb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Reaktor/commands/whatweb b/Reaktor/commands/whatweb index 84130d5c..afe20360 100755 --- a/Reaktor/commands/whatweb +++ b/Reaktor/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 |