This commit is contained in:
Zachary Robert Thomas Boyd 2014-03-09 01:01:16 -05:00
parent 21da96318f
commit f750161680

12
test.sh.php Normal file
View file

@ -0,0 +1,12 @@
<?php require('./config.php'); ?>
#!/bin/bash
while :
do
if export http_proxy=http://<?php echo PROXY_USERNAME; ?>:<?php echo PROXY_PASSWORD; ?>@localhost:<?php echo PROXY_PORT; ?> && wget -qO- http://ifconfig.me/ip; then
sleep 1;
else
echo "test failed";
break;
fi
done