Kela/server/test.sh

11 lines
189 B
Bash
Executable file

#!/bin/bash
trap "kill 0" EXIT
go build
./server -d 0 &
for i in $(seq 1 9)
do
sleep 0.1
./server -d $i -b :420$i -u http://localhost:420$i -i http://localhost:420$((i-1)) &
done
wait