Download 100MB in loop from web server

This commit is contained in:
JonOfUs 2025-06-02 10:42:37 +02:00
parent dbf983a327
commit 49cadd0423

View File

@ -2,4 +2,8 @@
echo Waiting 10 seconds for Tor to boot up
sleep 10
curl --socks5 127.0.0.1:9050 google.de
while true; do
curl --socks5 127.0.0.1:9050 https://rsca.vanrissenbeck.com/100MB.bin > /dev/null
echo "Downloaded 100MB. Waiting for 5 seconds before next download."
sleep 5
done