7 lines
97 B
Bash
7 lines
97 B
Bash
#!/bin/bash
|
|
|
|
while true; do
|
|
curl -s -X POST http://localhost:8080/abs/poll |jq
|
|
sleep 2
|
|
done
|