lander/landerctl

16 lines
271 B
Plaintext
Raw Normal View History

#!/usr/bin/env sh
API_KEY=test
URL=http://localhost:18080
if [ "$1" = add ]; then
curl \
-XPOST \
2022-11-21 11:03:16 +00:00
-d "$2" \
-H "X-Api-Key: $API_KEY" \
2022-11-21 11:03:16 +00:00
"$URL/$3"
2022-11-16 12:05:09 +00:00
elif [ "$1" = get ]; then
2022-11-21 13:19:56 +00:00
curl -is "$URL/$2" | sed -En 's/^location: (.*)/\1/p'
fi