summaryrefslogtreecommitdiffstats
path: root/Reaktor/commands/whatweb
blob: afe20360a59fbcf84eb079a825e8aae4cec8b0fc (plain)
1
2
3
4
5
6
7
#!/bin/sh
#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 
[ -z "${1:-}" ] &&  echo "!! no host given" && exit 1
exec $whatweb_bin -a 3 "$1" 2>&1