blob: b9ffade2d97eb070ceb42b4dc09378d06b13be12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#!/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"
#
# Don't use --continue on first run
#
if [ ! -e webcheck.dat ] ; then
PARAMS=""
else
PARAMS="-c -f"
fi
#
# $2 can only by used to ignore pattern atm
#
if [ "$2" != "" ] ; then
PARAMS="$PARAMS $(for i in $2 ; do echo -n " -y $i" ; done)"
fi
#
# actually run webcheck
#
webcheck $1 $PARAMS
|