#!/bin/bash

URL="$1"
if [ -z "$1" ]; then
	echo "Usage: $0 URL"
	exit 1
fi

curl -v -d "$URL" -H 'Content-Type: text/plain' '127.0.0.1:1969/web?single=1'
