#!/bin/sh
#
# Untar file..
#
# Wordy 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 --extract --unlink --file -
#	zcat $a | tar xf - 
done
