Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!steinmetz!davidsen From: davidsen@steinmetz.steinmetz.UUCP (William E. Davidsen Jr) Newsgroups: comp.sys.ibm.pc Subject: Re: Arc vs compress Message-ID: <7887@steinmetz.steinmetz.UUCP> Date: Mon, 16-Nov-87 18:00:17 EST Article-I.D.: steinmet.7887 Posted: Mon Nov 16 18:00:17 1987 Date-Received: Wed, 18-Nov-87 04:32:03 EST References: <696@rlgvax.UUCP> <7406@eddie.MIT.EDU> <343@gethen.UUCP> Reply-To: davidsen@crdos1.UUCP (bill davidsen) Organization: General Electric CRD, Schenectady, NY Lines: 40 Keywords: Why arc? I suspect that the best compression available with file extraction still allowed is from a combination of compress and cpio. Here is how it's done. Note that this is available to any system which has cpio (or afio) and compress. zoo: zoo a testit *.c arc: arc a testit *.c c+c: ls *.c | cpio -oc | compress > testit.CC Extract single file zoo: zoo x testit file.c arc: arc x testit *.c c+c: zcat