<?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: unshar htm patch file in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125961#M448698</link>
    <description>Thank U</description>
    <pubDate>Tue, 26 Aug 2008 06:34:35 GMT</pubDate>
    <dc:creator>zsujith</dc:creator>
    <dc:date>2008-08-26T06:34:35Z</dc:date>
    <item>
      <title>unshar htm patch file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125954#M448691</link>
      <description>Hi,&lt;BR /&gt;I have downloaded the patch PHSS_36088.html and and remove first few lines up to "----------" and done the following commands.&lt;BR /&gt;# ls&lt;BR /&gt;PHSS_36088.htm&lt;BR /&gt;# sh PHSS_36088.htm&lt;BR /&gt;PHSS_36088.htm[13]: ^M:  not found.&lt;BR /&gt;PHSS_36088.htm[14]: LANG^M: This is not an identifier.&lt;BR /&gt;# dos2ux PHSS_36088.htm &amp;gt; PHSS_36088&lt;BR /&gt;# sh PHSS_36088&lt;BR /&gt;PHSS_36088[20]: Syntax error at line 20 : `&amp;amp;' is not expected.&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;I am getting the sysntax error in line 20.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Can any one help me to resolve this issue.</description>
      <pubDate>Fri, 22 Aug 2008 09:52:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125954#M448691</guid>
      <dc:creator>zsujith</dc:creator>
      <dc:date>2008-08-22T09:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: unshar htm patch file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125955#M448692</link>
      <description>You did something wrong!&lt;BR /&gt;&lt;BR /&gt;On the download page, select&lt;BR /&gt;&lt;BR /&gt;+ Expand to view additional download options&lt;BR /&gt;&lt;BR /&gt;select gzip or tar and download.&lt;BR /&gt;&lt;BR /&gt;If you transfer it from a PC to the server with ftp, use binary mode.</description>
      <pubDate>Fri, 22 Aug 2008 10:01:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125955#M448692</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2008-08-22T10:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: unshar htm patch file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125956#M448693</link>
      <description>&amp;gt;I have downloaded the patch PHSS_36088.html&lt;BR /&gt;&lt;BR /&gt;Typically you should save it as PHSS_36088.&lt;BR /&gt;Then you unshar it with sh.&lt;BR /&gt;Also, besides PHSS_36088, you probably need a compiler patch and you might as well download both and automatically get that choice Torsten's mentions.</description>
      <pubDate>Fri, 22 Aug 2008 10:10:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125956#M448693</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-08-22T10:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: unshar htm patch file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125957#M448694</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Patch file is not downloaded in proper format here.&lt;BR /&gt;&lt;BR /&gt;On download page use FTP button at bottom of the screen and disable any download accelerator if any  e.g. DAP etc&lt;BR /&gt;&lt;BR /&gt;You will get windows download file window and then save that file without any extension.&lt;BR /&gt;&lt;BR /&gt;As said earlier, use bin to transfer to hp box from pc...&lt;BR /&gt;&lt;BR /&gt;Regds...Deepak</description>
      <pubDate>Fri, 22 Aug 2008 10:39:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125957#M448694</guid>
      <dc:creator>Deepak Kr</dc:creator>
      <dc:date>2008-08-22T10:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: unshar htm patch file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125958#M448695</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;This happens when yuo download an individual patch to a Windows PC using HTML.&lt;BR /&gt;&lt;BR /&gt;You need to FTP it from you Windows PC to your Unix server in ASCII mode to eliminate the carriage-return characters (^M).  Your use of 'dos2ux' will also fix that after the fact.&lt;BR /&gt;&lt;BR /&gt;The second problem is that the HTML encoded symbols like '&amp;gt;', '&amp;lt;' and '&amp;amp;'.  A Perl snippet will fix that:&lt;BR /&gt;&lt;BR /&gt;# perl -MHTML::Entities -pi -e 'decode_entities($_)' ./PHSS_36088&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Aug 2008 10:57:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125958#M448695</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-08-22T10:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: unshar htm patch file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125959#M448696</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;It seems like there are hidden "^M" characters in the PHSS_36088.htm file.&lt;BR /&gt;Use the following procedure to remove the "^M" characters&lt;BR /&gt;# tr -d '\015' &amp;lt; PHSS_36088.htm &amp;gt; PHSS_36088.htm.out&lt;BR /&gt;# sh PHSS_36088.htm.out&lt;BR /&gt;Let me know if this worked.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;&lt;BR /&gt;Rohit</description>
      <pubDate>Fri, 22 Aug 2008 13:18:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125959#M448696</guid>
      <dc:creator>Rohit Tole</dc:creator>
      <dc:date>2008-08-22T13:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: unshar htm patch file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125960#M448697</link>
      <description>I believe if it is  htm file then file should be downloaded again!!&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Aug 2008 13:23:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125960#M448697</guid>
      <dc:creator>Deepak Kr</dc:creator>
      <dc:date>2008-08-22T13:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: unshar htm patch file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125961#M448698</link>
      <description>Thank U</description>
      <pubDate>Tue, 26 Aug 2008 06:34:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unshar-htm-patch-file/m-p/5125961#M448698</guid>
      <dc:creator>zsujith</dc:creator>
      <dc:date>2008-08-26T06:34:35Z</dc:date>
    </item>
  </channel>
</rss>

