#!/bin/sh

if [ -f test.stuff ]; then
    cat test.stuff | /usr/bin/perl chemreport.pl > /dev/null
elif [ -f test.stuff.gz ]; then
    zcat test.stuff.gz | /usr/bin/perl chemreport.pl > /dev/null
fi
