#!/bin/sh

# UNPACK_TARS - unpack compressed tars and untar.
# Written by Darwin Open Systems, not the X Consortium.
# This file is too small and too obvious to be copyrightable or patentable.

# for f in xc*.tar.gz contrib*.tar.gz
for f in contrib*.tar.gz
do echo $f
	gunzip < $f | tar xof -
done
