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.
|
#!/bin/bash
|
|
|
|
CONCURRENCY=50
|
|
NATTEMPS=1000
|
|
|
|
I=0
|
|
|
|
while [ $I -lt $CONCURRENCY ];
|
|
do
|
|
I=$((I+1))
|
|
./connect.sh $NATTEMPS &
|
|
done
|