#!/bin/sh
#
#  GNU version of tar unpacker. Previous files are unlinked,
#  so as not to stomp on links in other directories.

for a 
do	echo $a ...
	zcat $a | tar xf -
done
