if test $# = 0
then
        echo "Usage: zgrep string <filename> [filenames...]"
        exit 1
fi
target=$1
shift
for args
do
    echo $args":"
    zcat $args | grep -i -n $target
done
