19 lines
378 B
Bash
Executable File
19 lines
378 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
API_KEY=test
|
|
URL=http://localhost:18080
|
|
|
|
if [ "$1" = add ]; then
|
|
curl \
|
|
-XPOST \
|
|
-d "$2" \
|
|
-H "X-Api-Key: $API_KEY" \
|
|
"$URL/s/$3"
|
|
|
|
elif [ "$1" = get ]; then
|
|
curl -is "$URL/$2" | sed -En 's/^[lL]ocation: (.*)/\1/p'
|
|
|
|
elif [ "$1" = paste ]; then
|
|
curl --data-binary @"$2" -XPOST -H "X-Api-Key: $API_KEY" "$URL/p/$3"
|
|
fi
|