From d91d10d3426d877bd901549b93ac0dd0e6cf7264 Mon Sep 17 00:00:00 2001 From: EUcancER Date: Wed, 2 May 2012 14:06:26 +0200 Subject: fix whatweb wrapper --- commands/whatweb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/commands/whatweb b/commands/whatweb index 1c1d779..c9aab29 100755 --- a/commands/whatweb +++ b/commands/whatweb @@ -1,5 +1,7 @@ #!/bin/sh #wrapper for WhatWeb -whatweb_bin='../repos/whatweb/whatweb' -[ -e "$whatweb_bin" ] || ( echo "Whatweb app does not exist" && exit 1 ) +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) $whatweb_bin "$1" -- cgit v1.2.3