]> git.lyx.org Git - wiki-uploads.git/blob - DevelTools/testServer/timed-wgets.sh
Import uploads from wiki
[wiki-uploads.git] / DevelTools / testServer / timed-wgets.sh
1 #!/usr/bin/env bash
2 #Usage:
3 #  timed-wgets.sh <count> URI
4 #
5 LIMIT=$1
6 URI=$2
7
8 for ((a=1; a <= $LIMIT; a++))
9 do
10  { { time wget -q -O /tmp/asda $URI && rm /tmp/asda ; } 2>&1 ; } ;
11 done