#!/bin/bash #add a delay time in seconds as a command line parameter, e.g. "./l.sh t 0.05" for i in `seq 1 100`; do echo Attempt number $i with $1 second delay ./t $1 done