#!/bin/sh
# This script is a "wrapper" around the "cu" command, to generate output
# showing what was done.

echo `date` Call: $0 $*
sleep ${DBG-1}

cu $*

echo `date` Done: $0 $*
sleep 10
