#!/bin/sh P=$1 PORT=$((P)) if [ ${PORT} -lt 1 ]; then echo "usage: $0 " 1>&2 exit 1 fi nc -u -l -p ${PORT} > /dev/null