#! /bin/sh
#
# Splus LICENSE rpt
#
# Report on license activity from the license server logfile.
#

extra_args=""

while [ $# -gt 0 ]
do case "$1" in
    -l) LIC_LOGFILE="$2"; shift;;
    *) extra_args="$extra_args $1";;
esac; shift; done

exec elmrpt $extra_args $LIC_LOGFILE
