#!/bin/sh

if [ $# -eq 0 ]; then
	echo "Usage: ${0} FILE" 1>&2
	exit
fi

exec wget -O- --no-check-certificate --user=bar --password=bar https://localhost/daruma --post-file=${1+"$@"}
