From owner-freebsd-hackers Mon May 12 20:31:37 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id UAA25582 for hackers-outgoing; Mon, 12 May 1997 20:31:37 -0700 (PDT) Received: from misery.sdf.com (misery.sdf.com [204.244.210.193]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id UAA25577 for ; Mon, 12 May 1997 20:31:32 -0700 (PDT) Received: from misery.sdf.com [204.244.213.33] by misery.sdf.com with smtp (Exim 1.61 #1) id 0wR8J4-0002yd-00; Mon, 12 May 1997 20:31:19 -0700 Date: Mon, 12 May 1997 20:31:17 -0700 (PDT) From: Tom Samplonius To: "Pedro F. Giffuni" cc: Chuck Robey , hackers@freebsd.org Subject: Re: GNU is not tar In-Reply-To: <3377F32D.10DB@fps.biblos.unal.edu.co> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Mon, 12 May 1997, Pedro F. Giffuni wrote: > Tom Samplonius wrote: > > > > BSD tar was discarded with 4.4, and "replaced" with pax. BSDI 2.1 > > hardlinks tar to pax. > > > Thanks for the hint. > The GNU tar bug must be something very stupid, one notation is accepted > and the other isn't (something like this): > > tar -cbf filename.tar 10 * Doesn't work ! Well, this is wrong for a start. The params are in the wrong order, and you shouldn't use a "-" with single letter options: tar cbf 10 filename.tar * (params in right order, and no "-") > tar --create --file filename.tar --blocksize 10 * works! > > regards, > > --Pedro. > > > Tom > > Tom