Removed the unnessesary test for subfield, as indicators have moved back as attributes.
[pazpar2-moved-to-github.git] / perf / bash / par.sh
1 #!/bin/bash
2 DELAY=0.1
3 NUMBER=10
4 let i=0
5 while test $i -lt $NUMBER; do
6         ./client.sh $i >$i.log 2>&1 &
7         sleep $DELAY
8         let i=$i+1
9 done