#!/bin/bash echo "Content-type: application/activity+json" echo "" echo '{ "@context": "https://www.w3.org/ns/activitystreams", "type": "OrderedCollection", "totalItems": 1, "items": [ { "type": "Note", "content": "hi" } ]}' exit 0