home *** CD-ROM | disk | FTP | other *** search
- :
- # Unpackem - script to decompress and extract each of the source directories
- # in the SkunkWare distribution. Written 29 Jun 1994 by Ronald Joe Record.
- #
-
- SRC=/v/csc/usr/dist/src
-
- DIRS="Games Tools X11"
-
- for i in $DIRS
- do
- cd $SRC/$i
- for j in *.tar.Z
- do
- echo "Uncompressing, extracting and removing compressed tar archive of"
- echo "$SRC/$i/$j source directory ..."
- zcat $j | tar xf - && rm -f $j
- done
- done
-