#!/bin/sh
# This command will take a tar file of tar files and slowly unconverts them.
for i in `tar tf $1 | sed "s,.tar,,g"`
     do	echo "Converting $i"
	tar xf $1 $i.tar
	if ! uncvt $i
	   then	echo "'uncvt $i' failed"
		exit 1
	   fi
	rm $i.tar
     done
