goblog/test.sh

10 lines
231 B
Bash
Executable File

if [ -z ${1+x} ]; then
msg="test message"
else
msg="$1"
fi
curl localhost:12345/add -d "{\"content\": \"$msg\", \"Title\": \"title\", \"Secret\": \"asdf\", \"author\": \"kageru\"}" -H "Content-Type: application/json" -v