On Fri, Oct 13, 2000 at 07:17:58PM -0500, Faisal Naeem wrote:
> I maybe wrong but I dont think that sun's version of tar supports -z 

you are correct.

one could download a version of gnu tar, which does support the -z option
from sunfreeware.com (must be root to install as they're pkg format).  Don't
forget gzip while you're out there.

> so 
> gunzip file.tgz
> tar -xvf file.tar 
> should work. 

or, to more perfectly emulate the behaviour of tar -xzvf , skip the
intermediate file with

gzip -dc file.tgz | tar -xvf -

-- 
_____________________   _                    _   _________________________
         Michael Rice  |_|    Collective    |_|  http://www.colltech.com
   [EMAIL PROTECTED]    |_  Technologies  _|    8009464646/1415141 pager 
           Consultant      []            []      "The Power Of Many Minds"   
---------------------------------------------------------------------------
Send administrative requests to [EMAIL PROTECTED]

Reply via email to