9 lines
250 B
Bash
9 lines
250 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
a=10000000
|
||
|
b=1000000000
|
||
|
|
||
|
for ((user = $a; user < $b; user ++))
|
||
|
do
|
||
|
curl -X POST --header "Content-Type: application/json" --data "{\"username\":\"${user}\",\"password\":\"1234\"}" https://staging.dimensionproject.net/api/register
|
||
|
done
|