Metropoli BBS
VIEWER: cap2tar.hpux MODE: TEXT (ASCII)
#!/bin/sh
# Creates a gzip-ed tarfile of the HP-UX 10.20 version of APL2,
# in file /tmp/cap2hpux.tar.gz.
cd
tarball=/tmp/cap2hpux.tar
tar cf $tarball \
	cap2/copyrite.txt \
	cap2/file_id.diz \
	cap2/gnu.txt \
	cap2/INSTALL.HPUX \
	cap2/READ.ME \
	cap2/bin/apl2 \
	cap2/lib/libcap2.a \
	cap2/handbook \
	cap2/help
gzip $tarball
[ RETURN TO DIRECTORY ]