Skip to content

Instantly share code, notes, and snippets.

@technoknol
Created May 25, 2019 16:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save technoknol/6cffd989133a668be9ba7a78f66efae7 to your computer and use it in GitHub Desktop.
Save technoknol/6cffd989133a668be9ba7a78f66efae7 to your computer and use it in GitHub Desktop.
Shell script to download dummy data just to hog bandwidth. :P
# simple oneliner. This will download 100GB file and send it to /dev/null. So it's just a Bandwidth hogger.
wget -O- http://speedtest-ny.turnkeyinternet.net/10000mb.bin > /dev/null
# more fun
# this script will download files indefinitely.
# save below line to a new file, give it name bandwidthhogger.sh name
# run below command
# sh ./bandwidthhogger.sh
while :
do
wget -O- http://speedtest-ny.turnkeyinternet.net/10000mb.bin > /dev/null
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment