projects
/
pazpar2-moved-to-github.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
d85b598ce8f6071d3ca2393d86c279fefd07477f
[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