Kela/server/test.sh

11 lines
212 B
Bash
Executable file

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