poc-prep/test-download
2014-01-22 11:14:27 -08:00

8 lines
231 B
Bash
Executable File

#!/bin/bash
# Test download speed.
# If you want to download something other than cachefly 100MB, specify it on the command line.
DEFAULT_URI="http://cachefly.cachefly.net/100mb.test"
URI=${1:-$DEFAULT_URI}
wget $URI -O /dev/null