.tar.gz

Chris Faylor cgf@bbc.com
Mon Jul 28 09:59:00 GMT 1997


In article < 199707280923.TAA12004@murlibobo.cs.mu.OZ.AU >,
Fergus Henderson  <fjh@cs.mu.OZ.AU> wrote:
>>If you are not using GNU tar then you may have to unzip the file
>>before untarring
>>
>>    gunzip -c file.tar.gz | tar xf -
>
>Last time I checked (version b17.1), this did not work,
>because pipes were opened in text mode, not binary mode.
>Instead I had to use
>
>     gunzip file.tar.gz
>     tar xf - file.tar
>
>Has this changed since b17.1?

I don't think so.  But using the 'z' option to gnutar works as it
always has:

	tar xzf file.tar.gz

There has been at least one copy of bash floating around which was
compiled with O_BINARY as the default for open.  That would allow the pipe
version above to work.
-- 
http://www.bbc.com/	cgf@bbc.com			"Strange how unreal
VMS=>UNIX Solutions	Boston Business Computing	 the real can be."
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".



More information about the Cygwin mailing list