summaryrefslogtreecommitdiffstats
path: root/bin/webcheck_url.sh
blob: 5f61fee97079845ea38b83b770a122869fbca2bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

# Copyright 2012 Holger Levsen <holger@layer-acht.org>
# released under the GPLv=2

# $1 = URL

if [ "$1" == "" ] ; then
	echo "need at least one URL to act on"
	echo '# $1 = URL'
	exit 1
fi

#set -x
set -e
export LANG=C
export http_proxy="http://localhost:3128"

PARAMS="-c -f"
if [ "$2" != "" ] ; then
	PARAMS=$(for i in $2 ; do echo -n " -y $i" ; done)
fi
webcheck $1 $PARAMS