diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/webcheck_url.sh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/webcheck_url.sh b/bin/webcheck_url.sh index 366f1890..2652f5b0 100755 --- a/bin/webcheck_url.sh +++ b/bin/webcheck_url.sh @@ -16,12 +16,8 @@ set -e export LANG=C export http_proxy="http://localhost:3128" -TMPFILE=$(mktemp -d) -cd $TMPFILE PARAMS="" if [ "$2" != "" ] ; then PARAMS=$(for i in $2 ; do echo -n "-y $i " ; done) fi webcheck $1 $PARAMS -cd .. -mv $TMPFILE $(basename $1) |