homecontrol/scripts/actor_get.sh

10 lines
169 B
Bash
Raw Normal View History

2019-11-05 01:18:25 +01:00
#!/bin/bash
REQ=GET
URL=http://localhost:8200/actor/get
2019-11-05 01:18:25 +01:00
# echo "$REQ $URL"
# read -p "continue?" -n 1 foo
2019-11-05 01:18:25 +01:00
curl \
-X $REQ $URL \
-H "Content-Type: application/json"