<?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: query on tar command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058105#M737017</link>
    <description>These are the limits when we backup the systems using unix commands. It would be been eaiser if there are external backup software/tools like netbackup or DP(data protector)..</description>
    <pubDate>Sat, 14 Jul 2007 04:11:13 GMT</pubDate>
    <dc:creator>skt_skt</dc:creator>
    <dc:date>2007-07-14T04:11:13Z</dc:date>
    <item>
      <title>query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058103#M737015</link>
      <description>hi, friends&lt;BR /&gt;&lt;BR /&gt;Can please tell me how to extract tar backup by extracting files without extracting leading directories.  For example, to   recover &lt;BR /&gt;/prod/applprod/test.txt to /test/applprod, I want tar to extract only test.txt to /test/applprod instead of the whole directory structure /prod/applprod/test.txt &lt;BR /&gt;&lt;BR /&gt;thank you</description>
      <pubDate>Sat, 14 Jul 2007 03:45:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058103#M737015</guid>
      <dc:creator>ng_7</dc:creator>
      <dc:date>2007-07-14T03:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058104#M737016</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;To be able to extract to a location different than from where you took the backup usingtar - needs backup to be taken with relative path names rather than absolute path names.&lt;BR /&gt;Thus if you have take tar like e.g.&lt;BR /&gt;tar cvf xyz.tar ./prod/*&lt;BR /&gt;Only then you can goto some other directory and extract it there using tar xvf .&lt;BR /&gt;&lt;BR /&gt;Next - if you want to extract only a particular file - then as er your e.g.&lt;BR /&gt;cd /test/applprod&lt;BR /&gt;tar xvf xyz.tar /prod/applprod/test.txt&lt;BR /&gt;&lt;BR /&gt;But again as I said earlier only if you have taken backup using relative names, then would you be able to extract it to /test/applprod , not otherwise.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ninad</description>
      <pubDate>Sat, 14 Jul 2007 04:04:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058104#M737016</guid>
      <dc:creator>Ninad_1</dc:creator>
      <dc:date>2007-07-14T04:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058105#M737017</link>
      <description>These are the limits when we backup the systems using unix commands. It would be been eaiser if there are external backup software/tools like netbackup or DP(data protector)..</description>
      <pubDate>Sat, 14 Jul 2007 04:11:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058105#M737017</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2007-07-14T04:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058106#M737018</link>
      <description>You could use GNU tar.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.gnu.org/software/tar/" target="_blank"&gt;http://www.gnu.org/software/tar/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.gnu.org/software/tar/manual/tar.html#transform" target="_blank"&gt;http://www.gnu.org/software/tar/manual/tar.html#transform&lt;/A&gt;</description>
      <pubDate>Sat, 14 Jul 2007 08:27:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058106#M737018</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2007-07-14T08:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058107#M737019</link>
      <description>No need to relative paths or foreign devil tools.&lt;BR /&gt;You can use the POSIX standard pax(1).  After decades I finally set up a script to use pax -s to rename the files.</description>
      <pubDate>Sat, 14 Jul 2007 10:49:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058107#M737019</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-07-14T10:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058108#M737020</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Sorry, probably I did not interpret you question correctly.&lt;BR /&gt;As Dennis suggested, you can use pax to extract the file you want and to a directory other than from where you backed it up, as below&lt;BR /&gt;pax -r -d -s ',/prod/applprod/,/test/applprod/,' -f xyz.tar /prod/applprod/test.txt&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ninad</description>
      <pubDate>Sat, 14 Jul 2007 15:31:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058108#M737020</guid>
      <dc:creator>Ninad_1</dc:creator>
      <dc:date>2007-07-14T15:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058109#M737021</link>
      <description>The ways/options available when recover is very much depends on how you backup.&lt;BR /&gt;&lt;BR /&gt;Example 1 (can restore to other directory; no full path is needed as backup is not taken at full path)&lt;BR /&gt;During backup&lt;BR /&gt;# cd /home/user1&lt;BR /&gt;# tar cvf /dev/rmt/0m color1&lt;BR /&gt;During recover&lt;BR /&gt;# cd /tmp&lt;BR /&gt;# tar xvf /dev/rmt/0m color1&lt;BR /&gt;&lt;BR /&gt;Example 2 (restore required full path as backup was taken in full path)&lt;BR /&gt;During backup&lt;BR /&gt;# tar cvf /dev/rmt/0m /home/user1/color1&lt;BR /&gt;During restore&lt;BR /&gt;# tar xvf /dev/rmt/0m /home/user1/color1&lt;BR /&gt;&lt;BR /&gt;Hope this make a clear difference.</description>
      <pubDate>Sun, 15 Jul 2007 21:21:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058109#M737021</guid>
      <dc:creator>tsf_1</dc:creator>
      <dc:date>2007-07-15T21:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058110#M737022</link>
      <description>&amp;gt;tsf: The ways/options available when recover is very much depends on how you backup.&lt;BR /&gt;&lt;BR /&gt;This is true if you just use the standard tar.  But as I said, you can tar with absolute path and use pax to restore to any path.&lt;BR /&gt;&lt;BR /&gt;# cd /home/user1&lt;BR /&gt;# tar cvf /dev/rmt/0m color1&lt;BR /&gt;&lt;BR /&gt;You can also optimize this by:&lt;BR /&gt;# tar cvf /dev/rmt/0m -C /home/user1 color1&lt;BR /&gt;(Multiple -C paths are possible.)</description>
      <pubDate>Sun, 15 Jul 2007 21:29:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058110#M737022</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-07-15T21:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058111#M737023</link>
      <description>hi, I don't know what is the mistake i made, please advise me on below.&lt;BR /&gt;&lt;BR /&gt;1. I do the backup on *.tmp &lt;BR /&gt;   on /prod/applprod/prodora/8.0.6&lt;BR /&gt;   - cd /prod/applprod/prodora/8.0.6&lt;BR /&gt;   - tar -cvf /u01/123.tar -i *.tmp&lt;BR /&gt;&lt;BR /&gt;2. I verify my backup by : &lt;BR /&gt;tamcoapp:/u01# tar -tvf /u01/123.tar&lt;BR /&gt;rw-rw-rw-   0/3      0 Jul 30 10:02 2007 alson.tmp&lt;BR /&gt;rwxr-xr-x 108/102   2251 Jun 11 11:54 2002 forms60.csh.tmp&lt;BR /&gt;rwxr-xr-x 108/102   2796 Jun 11 11:54 2002 forms60.sh.tmp&lt;BR /&gt;rwxr-xr-x 108/102   5565 Jun 11 11:54 2002 forms60_server.tmp&lt;BR /&gt;rwxr-xr-x 108/102   2371 Jun 11 11:54 2002 reports60.csh.tmp&lt;BR /&gt;rwxr-xr-x 108/102   2897 Jun 11 11:54 2002 reports60.sh.tmp&lt;BR /&gt;rwxr-xr-x 108/102   3139 Jun 11 11:54 2002 reports60_server.tmp&lt;BR /&gt;  &lt;BR /&gt;2. then I restore it in u01/applhprod/hprodora/8.0.6&lt;BR /&gt;&lt;BR /&gt;app:#/u01/applhprod/hprodora/8.0.6/pax -r -d -s ',/prod/applprod/prodora/8.0.6/,/u01/applhprod/hprodora/8.0.6/,' -f /u01/123.tar /prod/applprod/prodora/8.0.6/*.tmp&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;And I get this error message :&lt;BR /&gt;&lt;BR /&gt;tamcoapp:/u01/applhprod/hprodora/8.0.6# a/8.0.6/alson.tmp not found in archive              &amp;lt;&lt;BR /&gt;pax: /prod/applprod/prodora/8.0.6/alson.tmp not found in archive&lt;BR /&gt;pax: /prod/applprod/prodora/8.0.6/forms60.csh.tmp not found in archive&lt;BR /&gt;pax: /prod/applprod/prodora/8.0.6/forms60.sh.tmp not found in archive&lt;BR /&gt;pax: /prod/applprod/prodora/8.0.6/forms60_server.tmp not found in archive&lt;BR /&gt;pax: /prod/applprod/prodora/8.0.6/reports60.csh.tmp not found in archive&lt;BR /&gt;pax: /prod/applprod/prodora/8.0.6/reports60.sh.tmp not found in archive&lt;BR /&gt;pax: /prod/applprod/prodora/8.0.6/reports60_server.tmp not found in archive</description>
      <pubDate>Sun, 29 Jul 2007 23:29:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058111#M737023</guid>
      <dc:creator>ng_7</dc:creator>
      <dc:date>2007-07-29T23:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058112#M737024</link>
      <description>The shell expands this wildcard, because it's&lt;BR /&gt;not quoted:&lt;BR /&gt;&lt;BR /&gt;/prod/applprod/prodora/8.0.6/*.tmp&lt;BR /&gt;&lt;BR /&gt;Try quoting it, or, better yet, leave it out.&lt;BR /&gt;Everything in your archive is a *.tmp.  If&lt;BR /&gt;you specify no pattern, you should get&lt;BR /&gt;everything in the archive, which would seem&lt;BR /&gt;to be what you want.</description>
      <pubDate>Sun, 29 Jul 2007 23:52:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058112#M737024</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2007-07-29T23:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058113#M737025</link>
      <description>&amp;gt;1. I do the backup on *.tmp on /prod/applprod/prodora/8.0.6&lt;BR /&gt;- cd /prod/applprod/prodora/8.0.6&lt;BR /&gt;- tar -cvf /u01/123.tar -i *.tmp&lt;BR /&gt;&lt;BR /&gt;Your backup is relative, no need to use pax(1) to restore.  Also, I can't find the -i option under tar(1)??&lt;BR /&gt;&lt;BR /&gt;&amp;gt;2. I verify my backup by:&lt;BR /&gt;rw-rw-rw- 0/3 0 Jul 30 10:02 2007 alson.tmp&lt;BR /&gt;&lt;BR /&gt;These files are all relative.  Those are the names needed when you want to extract some of the files.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;3. then I restore it in /u01/applhprod/hprodora/8.0.6&lt;BR /&gt;app:#/u01/applhprod/hprodora/8.0.6/pax -r -d -s ',/prod/applprod/prodora/8.0.6/,/u01/applhprod/hprodora/8.0.6/,' -f /u01/123.tar /prod/applprod/prodora/8.0.6/*.tmp&lt;BR /&gt;&lt;BR /&gt;No need to use -s here.  Also, your extract path needs to be quoted, otherwise you're probably looking at the shell expansion in the original directory.  And more important of all, the files in the tarfile are relative and so you should just extract all of them:&lt;BR /&gt;$ cd /u01/applhprod/hprodora/8.0.6&lt;BR /&gt;$ tar -xf /u01/123.tar</description>
      <pubDate>Mon, 30 Jul 2007 00:08:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058113#M737025</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-07-30T00:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058114#M737026</link>
      <description>hi,  sorry, please allow me to ask more detail as I am new Unix administrator, do you mean my command should be as below ? if yes, I get &amp;gt; sign at the right most of the line&lt;BR /&gt;&lt;BR /&gt;pax -r -d -s ',/prod/applprod/prodora/8.0.6/,/u01/applhprod/hprodora/8.0.6/,' -f /u01/123.tar '/prod/applprod/prodora/8.0.6/*.tmp'&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Jul 2007 02:57:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058114#M737026</guid>
      <dc:creator>ng_7</dc:creator>
      <dc:date>2007-07-30T02:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058115#M737027</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;watch what Dennis told you:&lt;BR /&gt;&amp;gt;&amp;gt;&lt;BR /&gt;No need to use -s here. Also, your extract path needs to be quoted, &lt;BR /&gt;&amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;Your filenames in your tarfile are already whithout a leading path - so nothing is required to handle leafnames.&lt;BR /&gt;&lt;BR /&gt;In the case of full pathnames being in yout tarfiles, the commandline you reported seems right to me. Are you shure you didn't miss balancinf the single quotes? The shell output makes me think so.&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Mon, 30 Jul 2007 06:08:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058115#M737027</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2007-07-30T06:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058116#M737028</link>
      <description>&amp;gt;do you mean my command should be as below? if yes, I get "&amp;gt;" sign at the right most of the line&lt;BR /&gt;&lt;BR /&gt;Yes, if all on one line it should work.  But as Steven, Peter and I have mentioned, you don't need that.  What you need is my tar command or this pax command:&lt;BR /&gt;$ pax -r -d -f /u01/123.tar&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Peter: In the case of full pathnames being in yout tarfiles, the commandline you reported seems right to me.&lt;BR /&gt;&lt;BR /&gt;Ah, pax(1) does take wildcard patterns for the list of files to extract.  (tar(1) doesn't.)  This is in the style of find(1) and -path.&lt;BR /&gt;&lt;BR /&gt;$ pax -r -d -f /u01/123.tar "*.tmp"</description>
      <pubDate>Mon, 30 Jul 2007 21:05:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058116#M737028</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-07-30T21:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058117#M737029</link>
      <description>sorry, i think i confuse u all already,&lt;BR /&gt;that is not the good example. I am trying on the below, and managed to restore the file to the right location. but another problem arise is , the command doesn't extract the subdirectory&lt;BR /&gt;&lt;BR /&gt;I have files and directory as shown below dev:/hld# ll -r&lt;BR /&gt;total 16&lt;BR /&gt;drwxrwxrwx   2 root       sys           8192 Aug  3 16:32 tem&lt;BR /&gt;drwxr-xr-x   2 appluat    dba             96 Nov  9  2004 lost+found&lt;BR /&gt;drwxrwxrwx   3 applhld    users           96 Aug  3 16:21 hldenv&lt;BR /&gt;dev:/hld# ll -R&lt;BR /&gt;total 16&lt;BR /&gt;drwxrwxrwx   3 applhld    users           96 Aug  3 16:21 hldenv&lt;BR /&gt;drwxr-xr-x   2 appluat    dba             96 Nov  9  2004 lost+found&lt;BR /&gt;drwxrwxrwx   2 root       sys           8192 Aug  3 16:32 tem&lt;BR /&gt;&lt;BR /&gt;./hldenv:&lt;BR /&gt;total 48&lt;BR /&gt;-rw-r--r--   1 root       sys           2871 Aug  1 12:51 HLD_app-806.env&lt;BR /&gt;-rw-r--r--   1 root       sys           9847 Aug  1 18:27 HLD_app.env&lt;BR /&gt;drwxrwxrwx   2 root       sys             96 Aug  3 16:21 alson&lt;BR /&gt;&lt;BR /&gt;./hldenv/alson:&lt;BR /&gt;total 0&lt;BR /&gt;-rw-rw-rw-   1 root       sys              0 Aug  3 16:21 1.txt&lt;BR /&gt;-rw-rw-rw-   1 root       sys              0 Aug  3 16:21 2.txt&lt;BR /&gt;&lt;BR /&gt;./lost+found:&lt;BR /&gt;total 0&lt;BR /&gt;&lt;BR /&gt;I do a backup all the files / directory in hld directory.&lt;BR /&gt;#dev:/hld# tar -cvf /tmp/test.tar .&lt;BR /&gt;a ./hldenv/HLD_tamcoapp.env 20 blocks&lt;BR /&gt;a ./hldenv/HLD_tamcoapp-806.env 6 blocks&lt;BR /&gt;a ./hldenv/alson/1.txt 0 blocks&lt;BR /&gt;a ./hldenv/alson/2.txt 0 blocks&lt;BR /&gt;&lt;BR /&gt;and trying to extract to /hld/tmp by using the below command&lt;BR /&gt;pax -r -d -s ',/hldenv/./,/tem/,' -f /tmp/test.tar './hldenv/*'&lt;BR /&gt;&lt;BR /&gt;I managed to get the files restore to /hldenv/tem as shown below :&lt;BR /&gt;pax -r -d -s ',/hldenv/,/tem/,' -f /tmp/test.tar './hldenv/*'&lt;BR /&gt;&lt;BR /&gt;but it is only extract the file, but how about those subdirectory like /hldenv/alson :&lt;BR /&gt;please see below: &lt;BR /&gt;dev:/hld/tem# ls&lt;BR /&gt;HLD_app-806.env  HLD_app.env&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;please advise. Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Aug 2007 04:03:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058117#M737029</guid>
      <dc:creator>ng_7</dc:creator>
      <dc:date>2007-08-03T04:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058118#M737030</link>
      <description>&amp;gt;but how about those subdirectory&lt;BR /&gt;&lt;BR /&gt;I think your problem was you used -d, remove it.  (I was wondering why you used it.)&lt;BR /&gt;&lt;BR /&gt;If you have gotten some useful answers, please read the following about assigning points:&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;</description>
      <pubDate>Fri, 03 Aug 2007 04:44:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058118#M737030</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-08-03T04:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: query on tar command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058119#M737031</link>
      <description>Sorry for my delay in assigning points. Thanks to all who helping me expecially who suggest to use 'pax' command. I have tried it, and it works fine. &lt;BR /&gt;&lt;BR /&gt;thank you very much and hope you all will continue to give me guidance on my future threads.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;ng&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 19 Aug 2007 20:51:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/query-on-tar-command/m-p/5058119#M737031</guid>
      <dc:creator>ng_7</dc:creator>
      <dc:date>2007-08-19T20:51:44Z</dc:date>
    </item>
  </channel>
</rss>

