Home | History | Annotate | Download | only in latency
      1 #!/bin/bash
      2 
      3 i=0
      4 while test $i -lt 2000
      5 do
      6 	sleep 10; sh cpunoise.sh &
      7 	i=`expr $i + 1`
      8 done
      9