1#! /bin/sh 2############################################################################### 3# The BYTE UNIX Benchmarks - Release 3 4# Module: multi.sh SID: 3.4 5/15/91 19:30:24 5# 6############################################################################### 7# Bug reports, patches, comments, suggestions should be sent to: 8# 9# Ben Smith or Rick Grehan at BYTE Magazine 10# ben@bytepb.UUCP rick_g@bytepb.UUCP 11# 12############################################################################### 13# Modification Log: 14# 15############################################################################### 16ID="@(#)multi.sh:3.4 -- 5/15/91 19:30:24"; 17instance=1 18while [ $instance -le $1 ]; do 19 /bin/sh "$UB_BINDIR/tst.sh" & 20 instance=`expr $instance + 1` 21done 22wait 23 24