#!/bin/sh
test $# -lt 3 && echo "usage: $0 host path value" && exit -1
wget -q -O /dev/null "http://$1:80$2?value=$3&time=$(date +%Y%m%d%H%M%S)"
