blob: c627f9c658727fb8cdccd6426377b9be0578b79e [file] [log] [blame]
#!/bin/bash
rm refs
x=1
while [ $x -le $1 ]
do
(curl -s -X POST http://localhost:5556/v1/order -H "accept: */*" -H "Content-Type: application/json" -d "{\"beneficiaryIDDocumentCID\":\"\"}" | jq .orderReference >> refs ) &
x=$(( $x + 1 ))
done