<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Explode a *.gz file in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010867#M128552</link>
    <description>Hi,&lt;BR /&gt;# gunzip &lt;FILENAME&gt;.gz should help.&lt;/FILENAME&gt;</description>
    <pubDate>Mon, 30 Jun 2003 08:59:35 GMT</pubDate>
    <dc:creator>yogesh_4</dc:creator>
    <dc:date>2003-06-30T08:59:35Z</dc:date>
    <item>
      <title>Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010856#M128541</link>
      <description>I want to Explode a file on Unix it's a .gz file , What is the command that I can use ?</description>
      <pubDate>Mon, 30 Jun 2003 07:25:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010856#M128541</guid>
      <dc:creator>Ayanda_2</dc:creator>
      <dc:date>2003-06-30T07:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010857#M128542</link>
      <description># gunzip a*.gz</description>
      <pubDate>Mon, 30 Jun 2003 07:31:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010857#M128542</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2003-06-30T07:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010858#M128543</link>
      <description>Hi,&lt;BR /&gt;gunzip &lt;FILE.GZ&gt;&lt;BR /&gt;or&lt;BR /&gt;gzip -d &lt;FILE.GZ&gt;&lt;BR /&gt;&lt;BR /&gt;Enrico&lt;/FILE.GZ&gt;&lt;/FILE.GZ&gt;</description>
      <pubDate>Mon, 30 Jun 2003 07:31:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010858#M128543</guid>
      <dc:creator>Enrico P.</dc:creator>
      <dc:date>2003-06-30T07:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010859#M128544</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Use gzip -dc file1.gz &amp;gt; file1&lt;BR /&gt;or&lt;BR /&gt;gzip -d file1.gz&lt;BR /&gt;&lt;BR /&gt;For more information use&lt;BR /&gt;man gzip&lt;BR /&gt;or&lt;BR /&gt;gzip -h</description>
      <pubDate>Mon, 30 Jun 2003 07:37:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010859#M128544</guid>
      <dc:creator>Lilischkis</dc:creator>
      <dc:date>2003-06-30T07:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010860#M128545</link>
      <description>Thank you , This file was exploded correctly but now it created a *.tar file and how do I explode that one ?</description>
      <pubDate>Mon, 30 Jun 2003 07:39:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010860#M128545</guid>
      <dc:creator>Ayanda_2</dc:creator>
      <dc:date>2003-06-30T07:39:30Z</dc:date>
    </item>
    <item>
      <title>Re: Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010861#M128546</link>
      <description># tar xvf a*.tar</description>
      <pubDate>Mon, 30 Jun 2003 07:41:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010861#M128546</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2003-06-30T07:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010862#M128547</link>
      <description>Hi,&lt;BR /&gt;pay attention that a *.tar file can explode files in every directory.&lt;BR /&gt;&lt;BR /&gt;use &lt;BR /&gt;&lt;BR /&gt;tar -tvf yourfile.tar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;to see the content. pay attention to absolute/relativa path, or you may overwrite something usefull.&lt;BR /&gt;&lt;BR /&gt;to extract&lt;BR /&gt;&lt;BR /&gt;tar -xvf yourfile.tar&lt;BR /&gt;&lt;BR /&gt;  Massimo&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Jun 2003 07:42:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010862#M128547</guid>
      <dc:creator>Massimo Bianchi</dc:creator>
      <dc:date>2003-06-30T07:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010863#M128548</link>
      <description>&lt;BR /&gt;#gunzip a.tar.gz&lt;BR /&gt;#tar xvf a.tar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Jun 2003 07:48:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010863#M128548</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2003-06-30T07:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010864#M128549</link>
      <description>Should I use the full path for the gunzip?</description>
      <pubDate>Mon, 30 Jun 2003 07:48:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010864#M128549</guid>
      <dc:creator>ÁõÔÆ·É</dc:creator>
      <dc:date>2003-06-30T07:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010865#M128550</link>
      <description>no, you don't need the full path&lt;BR /&gt;&lt;BR /&gt;GNU tar has gzip builtin:&lt;BR /&gt;&lt;BR /&gt;# gtar -tzvf file.tgz&lt;BR /&gt;&lt;BR /&gt;for an index&lt;BR /&gt;&lt;BR /&gt;# gtar -xvzf file.tgz to extract&lt;BR /&gt;&lt;BR /&gt;Mind you that GNU tar *by default* strips all leading slashes, so it does not have the side effect mentioned above that files can be extracted all over your system&lt;BR /&gt;&lt;BR /&gt;Enjoy, have FUN! H.Merijn&lt;BR /&gt;&lt;BR /&gt;( GNU tar available on my ITRC site: &lt;A href="https://www.beepz.com/personal/merijn/" target="_blank"&gt;https://www.beepz.com/personal/merijn/&lt;/A&gt; or &lt;A href="http://www.cmve.net/~merijn/" target="_blank"&gt;http://www.cmve.net/~merijn/&lt;/A&gt; )</description>
      <pubDate>Mon, 30 Jun 2003 07:58:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010865#M128550</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2003-06-30T07:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010866#M128551</link>
      <description>Ayanda,&lt;BR /&gt;  My 2 cents.&lt;BR /&gt;&lt;BR /&gt;  You can combine tar and gzip.  When you want to extract/view the files from the gzipped-tarred file use this.&lt;BR /&gt;&lt;BR /&gt;gunzip -c tmp_file.tar.gz|tar -xvf -&lt;BR /&gt;&lt;BR /&gt;  You have to use tar -tvf instead of -xvf for viewing the content. &lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Umapathy&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Jun 2003 08:06:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010866#M128551</guid>
      <dc:creator>Umapathy S</dc:creator>
      <dc:date>2003-06-30T08:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010867#M128552</link>
      <description>Hi,&lt;BR /&gt;# gunzip &lt;FILENAME&gt;.gz should help.&lt;/FILENAME&gt;</description>
      <pubDate>Mon, 30 Jun 2003 08:59:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010867#M128552</guid>
      <dc:creator>yogesh_4</dc:creator>
      <dc:date>2003-06-30T08:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010868#M128553</link>
      <description>I preffer gtar!&lt;BR /&gt;&lt;BR /&gt;# gtar -xvzf file.tgz&lt;BR /&gt;&lt;BR /&gt;regular tar has a bad history. ...&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Jun 2003 11:49:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010868#M128553</guid>
      <dc:creator>Donny Jekels</dc:creator>
      <dc:date>2003-06-30T11:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010869#M128554</link>
      <description>Hello!&lt;BR /&gt;&lt;BR /&gt;gunzip -c &lt;FILENAME&gt;.tar.gz | tar xf -&lt;BR /&gt;&lt;BR /&gt;Or use the gnu tar, download from:&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/hppd/hpux/Gnu/tar-1.13.25/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Gnu/tar-1.13.25/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;gtar xzf &lt;FILENAME&gt;.tar.gz &lt;BR /&gt;&lt;BR /&gt;Caesar&lt;/FILENAME&gt;&lt;/FILENAME&gt;</description>
      <pubDate>Mon, 30 Jun 2003 20:20:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010869#M128554</guid>
      <dc:creator>Caesar_3</dc:creator>
      <dc:date>2003-06-30T20:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Explode a *.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010870#M128555</link>
      <description>Some more information for everyone.  You can un-tar a gzip'ed tar file WITHOUT gunzip'ing it first.&lt;BR /&gt;&lt;BR /&gt;If you want to un-tar the entire file you can do the following:&lt;BR /&gt;&lt;BR /&gt;# gzcat file.tar.gz | tar -xvf -&lt;BR /&gt;&lt;BR /&gt;If you want to extract a single file out of the file.tar.gz file, you can do:&lt;BR /&gt;&lt;BR /&gt;# gzcat file.tar.gz | tar -xvf - filename&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;# gzcat file.tar.gz | tar -xvf - dir/filename&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Jun 2003 20:37:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/explode-a-gz-file/m-p/3010870#M128555</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2003-06-30T20:37:24Z</dc:date>
    </item>
  </channel>
</rss>

