#!/bin/bash
while true
do
for object in "ArtinRepresentation/random" "GaloisGroup/random" "padicField/random" "ModularForm/GL2/TotallyReal/random" "EllipticCurve/Q/random" "EllipticCurve/random" "Genus2Curve/Q/random" "NumberField/random" "SatoTateGroup/random" "Lattice/random"
do
url=http://${1}/${object};
for i in `seq 1 $2`;
do
echo -e $url : $(curl -L -silent -o /dev/null -w "Connect: %{time_connect} TTFB: %{time_starttransfer} Total time: %{time_total} \n" ${url});
done;
sleep 30
done;
done;