#! /bin/sh
if [ $# != 8 ]
then
  echo "Usage: $0 postgresdb iconname iconind usex usey physx physy hexwordstring"
  exit
fi

monitor $1 << EOF
append geo_icons (iconname="$2",iconind=$3,usex=$4,usey=$5,physx=$6,physy=$7,hexwords="$8"::text) \g
EOF
