Add variable for creating users

This commit is contained in:
kolaente 2020-05-14 18:37:43 +02:00
parent ba742a259a
commit 551c51ec95
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 4 additions and 2 deletions

View File

@ -1,9 +1,11 @@
#!/bin/bash
#!/bin/sh
URL='http://localhost:3456'
for f in {1..100};
do
data="{\"username\":\"testuser${f}\",\"email\":\"testuser${f}@kolaente.de\",\"password\":\"1234\"}"
#echo $data
curl 'http://localhost:8080/api/v1/register' -H "accept: application/json" -H "Content-Type: application/json" -X POST -d ${data}
curl ${URL}/api/v1/register -H "accept: application/json" -H "Content-Type: application/json" -X POST -d ${data}
echo "";
done