summaryrefslogtreecommitdiff
path: root/examples/testmultiisource
blob: a02a19c5de46db09a0ae07fc878a176490fbc06e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash


numclients=$2
config=$1

#start initial ambd client:

ambd -D -c $config -d1 -l host.output

sleep 10

for (( i=1; i<=$numclients; i++ ))
do
	ambd -D -c configwebsocketsource -d2 -l client.$i.output
done

sleep 60

killall ambd