#!/bin/sh
outdir=$1
infile=$2
outfile=`basename $infile .gz`
echo Uncompressing $infile to $outdir/$outfile
gzcat $infile > $outdir/$outfile
