#!/bin/sh
if [ "$#" -ne 0 ] ; then
  cgum $@
else
  t=`mktemp`
  cat > $t
  cgum $t
  rm -f $t > /dev/null
fi
