10 lines
250 B
Bash
Executable File
10 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
echo Waiting 10 seconds for Tor to boot up
|
|
sleep 10
|
|
|
|
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
|