lander/landerctl

16 lines
276 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 12:03:16 +01:00
-d "$2" \
-H "X-Api-Key: $API_KEY" \
"$URL/s/$3"
2022-11-16 13:05:09 +01:00
elif [ "$1" = get ]; then
curl -is "$URL/$2" | sed -En 's/^[lL]ocation: (.*)/\1/p'
fi