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