#!/bin/sh

echo INFO: Starting rastertoraster 1>&2

# See if we have a filename on the command-line...
if test -z "$6"; then
        ifile="-"
else
        ifile="$6"
fi

exec cat $ifile
