first commit

This commit is contained in:
Jose Caban
2025-06-07 01:59:34 -04:00
commit 388ac241f0
3558 changed files with 9116289 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
#!/bin/bash
export http_proxy="http://127.0.0.1:1338"
var0=0
LIMIT=10
echo "Starting latency test: 4 jpegs fetched $LIMIT times."
date > start_date
while [ "$var0" -lt "$LIMIT" ]
do
var0=$(($var0 + 1))
time wget http://asskoala.servebeer.com/~nayupuyan/large_one.jpg
time wget http://asskoala.servebeer.com/~nayupuyan/large_two.jpg
time wget http://asskoala.servebeer.com/~nayupuyan/large_three.jpg
time wget http://asskoala.servebeer.com/~nayupuyan/large_four.jpg
done
echo "Start time: "
cat start_date
echo "End time: "
date
rm -f *.jpg* start_date
echo "End of lateny test!"
exit 0