This repository has been archived on 2024-01-15. You can view files and clone it, but cannot push or open issues or pull requests.
vn-mysql/proxy-test/proxy-test.sh

13 lines
124 B
Bash
Executable File

#!/bin/bash
CONCURRENCY=400
NATTEMPS=40
I=0
while [ $I -lt $CONCURRENCY ];
do
I=$((I+1))
./connect.sh $NATTEMPS &
done