#!/bin/sh if [ -z "$1" ]; then echo "Usage: $0 " exit 1 fi curl -XPOST 'http://localhost:4000/public/simple' -d @$1 exit 0