<?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 cpio ?? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3320569#M187296</link>
    <description>Hi &lt;BR /&gt;  I am having a script like this&lt;BR /&gt;&lt;BR /&gt;install_informix_dir=/opt/install_informix_dir&lt;BR /&gt;informix_dir=/opt/informix&lt;BR /&gt;&lt;BR /&gt; Now it executes a tar command to extract &lt;BR /&gt; informix tar&lt;BR /&gt;&lt;BR /&gt; tar xf &lt;FILE_NAME&gt;&lt;BR /&gt; &lt;BR /&gt; and then&lt;BR /&gt; &lt;BR /&gt; mkdir $informix_dir&lt;BR /&gt; cd $informix_dir&lt;BR /&gt;&lt;BR /&gt;Then it is having these 2 cpio command, please explain what this is doing &lt;BR /&gt;&lt;BR /&gt;cpio -icdBum &amp;lt; $informix_install_dir/informix/server/ids.cpi &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt;cpio -icdBum &amp;lt; $informix_install_dir/informix/iconnect/hp/connect.cpi &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;What are the above 2 CPIO command doing please explain.....&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Amit&lt;/FILE_NAME&gt;</description>
    <pubDate>Thu, 01 Jul 2004 09:09:28 GMT</pubDate>
    <dc:creator>Amit Dixit_2</dc:creator>
    <dc:date>2004-07-01T09:09:28Z</dc:date>
    <item>
      <title>cpio ??</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3320569#M187296</link>
      <description>Hi &lt;BR /&gt;  I am having a script like this&lt;BR /&gt;&lt;BR /&gt;install_informix_dir=/opt/install_informix_dir&lt;BR /&gt;informix_dir=/opt/informix&lt;BR /&gt;&lt;BR /&gt; Now it executes a tar command to extract &lt;BR /&gt; informix tar&lt;BR /&gt;&lt;BR /&gt; tar xf &lt;FILE_NAME&gt;&lt;BR /&gt; &lt;BR /&gt; and then&lt;BR /&gt; &lt;BR /&gt; mkdir $informix_dir&lt;BR /&gt; cd $informix_dir&lt;BR /&gt;&lt;BR /&gt;Then it is having these 2 cpio command, please explain what this is doing &lt;BR /&gt;&lt;BR /&gt;cpio -icdBum &amp;lt; $informix_install_dir/informix/server/ids.cpi &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt;cpio -icdBum &amp;lt; $informix_install_dir/informix/iconnect/hp/connect.cpi &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;What are the above 2 CPIO command doing please explain.....&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Amit&lt;/FILE_NAME&gt;</description>
      <pubDate>Thu, 01 Jul 2004 09:09:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3320569#M187296</guid>
      <dc:creator>Amit Dixit_2</dc:creator>
      <dc:date>2004-07-01T09:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: cpio ??</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3320570#M187297</link>
      <description>Looks like you are cping files to the dir you just made and want to see errors goin to STDOUT from STDERR...</description>
      <pubDate>Thu, 01 Jul 2004 09:12:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3320570#M187297</guid>
      <dc:creator>Todd McDaniel_1</dc:creator>
      <dc:date>2004-07-01T09:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: cpio ??</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3320571#M187298</link>
      <description>Hai,&lt;BR /&gt;&lt;BR /&gt; You are coping the ids.cpi and connect.cpi files to pwd directory with the same directory path. It will use the read / write headers in ASCII format. &lt;BR /&gt;&lt;BR /&gt; cpio is using the method of extraction of files from the standard input. &lt;BR /&gt;&lt;BR /&gt; If you want to redirect to or from devices,we have to use B option to control the block input / output to 5120 bytes.&lt;BR /&gt;&lt;BR /&gt; Old files are not replaced with the new files with it's name. It will use the same modification time as before extraction.&lt;BR /&gt;&lt;BR /&gt; STDOUT messages are Redirected to null device. Error messages are redirected to STDOUT mode.&lt;BR /&gt;&lt;BR /&gt; I hope B option is not needed if you are not using the devices.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Muthukumar.</description>
      <pubDate>Thu, 01 Jul 2004 10:07:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3320571#M187298</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-07-01T10:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: cpio ??</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3320572#M187299</link>
      <description>Hi,&lt;BR /&gt;  Thanks for the reply but the script is&lt;BR /&gt;  not doing what it is suppose to do&lt;BR /&gt;  It doesn't create the same directory&lt;BR /&gt;  structure and cpi's the file to them&lt;BR /&gt;&lt;BR /&gt;  What could be the possible reason for &lt;BR /&gt;  this and can I display error on screen.&lt;BR /&gt;&lt;BR /&gt;  Thanks,&lt;BR /&gt;  Amit</description>
      <pubDate>Thu, 01 Jul 2004 10:19:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3320572#M187299</guid>
      <dc:creator>Amit Dixit_2</dc:creator>
      <dc:date>2004-07-01T10:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: cpio ??</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3320573#M187300</link>
      <description>silly ? &lt;BR /&gt;&lt;BR /&gt;but should the cpios be &lt;BR /&gt;$install_informix_dir not $informix_install_dir&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Jul 2004 10:34:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3320573#M187300</guid>
      <dc:creator>Kevin Batter_4</dc:creator>
      <dc:date>2004-07-01T10:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: cpio ??</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3320574#M187301</link>
      <description>Hi,&lt;BR /&gt;  That is not the mistake I typed it wrong&lt;BR /&gt;  on ITRC but in the script there is no&lt;BR /&gt;  mistake related to that&lt;BR /&gt;&lt;BR /&gt;  Please see the attached for the details&lt;BR /&gt;  and tell me what I am doing wrong.&lt;BR /&gt;&lt;BR /&gt;  Thanks,&lt;BR /&gt;  Amit</description>
      <pubDate>Thu, 01 Jul 2004 10:58:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3320574#M187301</guid>
      <dc:creator>Amit Dixit_2</dc:creator>
      <dc:date>2004-07-01T10:58:20Z</dc:date>
    </item>
  </channel>
</rss>

