5 lines
167 B
Bash
5 lines
167 B
Bash
#!/bin/bash
|
|
|
|
echo '{"username":"f01","password":"f01f01"}' > temp.json
|
|
ab -n 100 -c 10 -T application/json -p temp.json http://10.67.6.4/api/auth/register
|
|
rm temp.json |