#! /bin/sh for round in $(seq 100); do echo "Round $round -- $(date)" for i in $(seq 100); do (wget -q -i urls.txt -O /dev/null) & done wait done