<?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: shell script error in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096959#M443444</link>
    <description>hi again,&lt;BR /&gt;&lt;BR /&gt;below the modified script:&lt;BR /&gt;&lt;BR /&gt;$ vi script1.sh&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;echo "enter the number"&lt;BR /&gt;read number1&lt;BR /&gt;echo "enter the number"&lt;BR /&gt;read number2&lt;BR /&gt;if [ $number1 = $number2 ]&lt;BR /&gt;then&lt;BR /&gt;echo "matching"&lt;BR /&gt;exit&lt;BR /&gt;else [ $number1 != $number2 ]&lt;BR /&gt;echo "Not matching"&lt;BR /&gt;fi&lt;BR /&gt;exit&lt;BR /&gt;&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;"script1.sh" 14 lines, 200 characters&lt;BR /&gt;$ ./script1.sh&lt;BR /&gt;enter the number&lt;BR /&gt;12&lt;BR /&gt;enter the number&lt;BR /&gt;13&lt;BR /&gt;Not matching&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
    <pubDate>Tue, 11 Mar 2008 04:55:34 GMT</pubDate>
    <dc:creator>Yogeeraj_1</dc:creator>
    <dc:date>2008-03-11T04:55:34Z</dc:date>
    <item>
      <title>shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096956#M443441</link>
      <description>when i am entering mismatching number then it also showing matching.&lt;BR /&gt;&lt;BR /&gt;eg:12 and 13 it showing mathcing&lt;BR /&gt;12 and 12 also showing matching.&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;echo "enter the number"&lt;BR /&gt;read number1&lt;BR /&gt;echo "enter the number"&lt;BR /&gt;read number2&lt;BR /&gt;if   number1=number2&lt;BR /&gt;then&lt;BR /&gt;echo "matching"&lt;BR /&gt;exit&lt;BR /&gt;else  number1!=number2&lt;BR /&gt;echo "Not matching"&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;exit</description>
      <pubDate>Tue, 11 Mar 2008 04:42:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096956#M443441</guid>
      <dc:creator>Sajjad Sahir</dc:creator>
      <dc:date>2008-03-11T04:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096957#M443442</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;when working with the variables you should use the $ sign.&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;if $number1 = $number2&lt;BR /&gt;then&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Tue, 11 Mar 2008 04:51:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096957#M443442</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2008-03-11T04:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096958#M443443</link>
      <description>Also capitalize your var.'s for readability.</description>
      <pubDate>Tue, 11 Mar 2008 04:52:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096958#M443443</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2008-03-11T04:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096959#M443444</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;below the modified script:&lt;BR /&gt;&lt;BR /&gt;$ vi script1.sh&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;echo "enter the number"&lt;BR /&gt;read number1&lt;BR /&gt;echo "enter the number"&lt;BR /&gt;read number2&lt;BR /&gt;if [ $number1 = $number2 ]&lt;BR /&gt;then&lt;BR /&gt;echo "matching"&lt;BR /&gt;exit&lt;BR /&gt;else [ $number1 != $number2 ]&lt;BR /&gt;echo "Not matching"&lt;BR /&gt;fi&lt;BR /&gt;exit&lt;BR /&gt;&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;"script1.sh" 14 lines, 200 characters&lt;BR /&gt;$ ./script1.sh&lt;BR /&gt;enter the number&lt;BR /&gt;12&lt;BR /&gt;enter the number&lt;BR /&gt;13&lt;BR /&gt;Not matching&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Tue, 11 Mar 2008 04:55:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096959#M443444</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2008-03-11T04:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096960#M443445</link>
      <description>&lt;!--!*#--&gt;hi again,&lt;BR /&gt;&lt;BR /&gt;below a more readable output:&lt;BR /&gt;&lt;BR /&gt;$ vi script1.sh&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;echo "enter the number"&lt;BR /&gt;read NUMBER1&lt;BR /&gt;echo "enter the number"&lt;BR /&gt;read NUMBER2&lt;BR /&gt;if [ $NUMBER1 = $NUMBER2 ]&lt;BR /&gt;then&lt;BR /&gt; echo "matching"&lt;BR /&gt; exit&lt;BR /&gt;else [ $NUMBER1 != $NUMBER2 ]&lt;BR /&gt; echo "Not matching"&lt;BR /&gt;fi&lt;BR /&gt;exit&lt;BR /&gt;&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;~&lt;BR /&gt;"script1.sh" 14 lines, 200 characters&lt;BR /&gt;$ ./script1.sh&lt;BR /&gt;enter the number&lt;BR /&gt;12&lt;BR /&gt;enter the number&lt;BR /&gt;12&lt;BR /&gt;matching&lt;BR /&gt;$ r&lt;BR /&gt;./script1.sh&lt;BR /&gt;enter the number&lt;BR /&gt;12&lt;BR /&gt;enter the number&lt;BR /&gt;13&lt;BR /&gt;Not matching&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Tue, 11 Mar 2008 04:58:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096960#M443445</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2008-03-11T04:58:55Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096961#M443446</link>
      <description>#!/usr/bin/sh&lt;BR /&gt; echo "enter the number"&lt;BR /&gt; read NUMBER1&lt;BR /&gt; echo "enter the number"&lt;BR /&gt; read NUMBER2&lt;BR /&gt; if   $NUMBER1=$NUMBER2&lt;BR /&gt;      ($NUMBER1 = $NUMBER2 I TESTED THIS ONE ALSO)&lt;BR /&gt;then&lt;BR /&gt; echo "matching"&lt;BR /&gt; else&lt;BR /&gt; echo "Not matching"&lt;BR /&gt;fi&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Mar 2008 05:25:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096961#M443446</guid>
      <dc:creator>Sajjad Sahir</dc:creator>
      <dc:date>2008-03-11T05:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096962#M443447</link>
      <description>dear all &lt;BR /&gt;still it showing error&lt;BR /&gt;i don't why i am still confusing&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;echo "enter the Number"&lt;BR /&gt;read NUMBER1&lt;BR /&gt;echo "enter the Number"&lt;BR /&gt;read NUMBER2&lt;BR /&gt;if [$NUMBER1= $NUMBER2]&lt;BR /&gt;then&lt;BR /&gt;echo "matching"&lt;BR /&gt;exit&lt;BR /&gt;else [$NUMBER1 != $NUMBER2]&lt;BR /&gt;&lt;BR /&gt;echo "Not matching"&lt;BR /&gt;fi&lt;BR /&gt;exit</description>
      <pubDate>Tue, 11 Mar 2008 06:09:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096962#M443447</guid>
      <dc:creator>Sajjad Sahir</dc:creator>
      <dc:date>2008-03-11T06:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096963#M443448</link>
      <description>Yogeeraj what is the problem in my shell script&lt;BR /&gt;I wrote in the same way but i am not getting&lt;BR /&gt;any parmeter missing or somethign like that&lt;BR /&gt;or file permission some thing like that&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;&lt;BR /&gt;echo "enter the Number"&lt;BR /&gt;&lt;BR /&gt;read NUMBER1&lt;BR /&gt;&lt;BR /&gt;echo "enter the Number"&lt;BR /&gt;&lt;BR /&gt;read NUMBER2&lt;BR /&gt;&lt;BR /&gt;if [ $NUMBER1= $NUMBER2 ]&lt;BR /&gt;&lt;BR /&gt;then&lt;BR /&gt;&lt;BR /&gt;echo "matching"&lt;BR /&gt;&lt;BR /&gt;exit&lt;BR /&gt;&lt;BR /&gt;else [ $NUMBER1 != $NUMBER2 ]&lt;BR /&gt;&lt;BR /&gt;echo "Not matching"&lt;BR /&gt;fi&lt;BR /&gt;exit&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Mar 2008 06:30:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096963#M443448</guid>
      <dc:creator>Sajjad Sahir</dc:creator>
      <dc:date>2008-03-11T06:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096964#M443449</link>
      <description>&lt;!--!*#--&gt;Hi Sajjad,&lt;BR /&gt;   I can execute the following script without any error.&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;echo "enter the Number"&lt;BR /&gt;read NUMBER1&lt;BR /&gt;echo "enter the Number"&lt;BR /&gt;read NUMBER2&lt;BR /&gt;if [ $NUMBER1 -eq $NUMBER2 ]&lt;BR /&gt;then&lt;BR /&gt;echo "matching"&lt;BR /&gt;exit&lt;BR /&gt;else [ $NUMBER1 != $NUMBER2 ]&lt;BR /&gt;echo "Not matching"&lt;BR /&gt;fi&lt;BR /&gt;exit&lt;BR /&gt;&lt;BR /&gt;For setting the execution permission, use the command:&lt;BR /&gt; #chmod u+x filename.&lt;BR /&gt;If you want a trial run of the script without setting the execution permition use:&lt;BR /&gt;# sh filename&lt;BR /&gt;   Regards,&lt;BR /&gt;   Davis Paul.&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Mar 2008 07:19:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096964#M443449</guid>
      <dc:creator>Davis Paul</dc:creator>
      <dc:date>2008-03-11T07:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096965#M443450</link>
      <description>dear david paul&lt;BR /&gt;i gave already that permission&lt;BR /&gt;also&lt;BR /&gt;./ &lt;BR /&gt;sh etc...&lt;BR /&gt;&lt;BR /&gt;any how others can excute this one without&lt;BR /&gt;erro&lt;BR /&gt;but i am getting error&lt;BR /&gt;i don't why?&lt;BR /&gt;it is amazing me&lt;BR /&gt;sajjad&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Mar 2008 07:22:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096965#M443450</guid>
      <dc:creator>Sajjad Sahir</dc:creator>
      <dc:date>2008-03-11T07:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096966#M443451</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;it could be a problem with spaces in the script...&lt;BR /&gt;&lt;BR /&gt;am attaching the code in a text file.&lt;BR /&gt;&lt;BR /&gt;Please download and run it.&lt;BR /&gt;&lt;BR /&gt;$ chmod +x script1.sh&lt;BR /&gt;$ ./script1.sh&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;revert&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Tue, 11 Mar 2008 08:00:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096966#M443451</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2008-03-11T08:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096967#M443452</link>
      <description>&lt;!--!*#--&gt;Hi Sajjad,&lt;BR /&gt;  Please post the error messages which you are getting now.&lt;BR /&gt;    Regards,&lt;BR /&gt;    Davis Paul &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Mar 2008 09:19:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096967#M443452</guid>
      <dc:creator>Davis Paul</dc:creator>
      <dc:date>2008-03-11T09:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096968#M443453</link>
      <description>closed&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Mar 2008 09:20:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096968#M443453</guid>
      <dc:creator>Sajjad Sahir</dc:creator>
      <dc:date>2008-03-11T09:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096969#M443454</link>
      <description>&amp;gt;closed&lt;BR /&gt;&lt;BR /&gt;You haven't closed the thread.&lt;BR /&gt;Also, if any answers here are useful, you need to assign points before you close it.</description>
      <pubDate>Tue, 11 Mar 2008 15:00:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096969#M443454</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-03-11T15:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096970#M443455</link>
      <description>actually, the test in the else case isn't necessary, as its either matching or it doesn't...since you tested (and failed) match the else should just *happen*&lt;BR /&gt;&lt;BR /&gt;also, the original poster needs to be aware that the tests indicated are for matching strings , so "1" and "01", while numerically equal fail as the strings differ</description>
      <pubDate>Tue, 11 Mar 2008 18:53:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096970#M443455</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2008-03-11T18:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096971#M443456</link>
      <description>It's REALLY important to keep strings and numbers separate. The strings 01 001 and 1 are very different strings. *ALWAYS* compare numbers with the numeric comparison operators:&lt;BR /&gt; &lt;BR /&gt;-eq -ne -gt -ge -lt -le&lt;BR /&gt; &lt;BR /&gt;Note that the strings 1 9 22 777 will compare (sort) in this order:&lt;BR /&gt; &lt;BR /&gt;1 &lt;BR /&gt;22&lt;BR /&gt;777&lt;BR /&gt;9&lt;BR /&gt; &lt;BR /&gt;but as numbers, they will sort this way:&lt;BR /&gt; &lt;BR /&gt;1&lt;BR /&gt;9&lt;BR /&gt;22&lt;BR /&gt;777&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Mar 2008 23:48:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096971#M443456</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2008-03-11T23:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096972#M443457</link>
      <description>Hi,&lt;BR /&gt;here is the correct information of the script:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;echo "enter the number"&lt;BR /&gt;read number1&lt;BR /&gt;echo "enter the number"&lt;BR /&gt;read number2&lt;BR /&gt;if [ $number1 = $number2 ]&lt;BR /&gt;then&lt;BR /&gt;echo "matching"&lt;BR /&gt;exit&lt;BR /&gt;else&lt;BR /&gt;echo "Not matching"&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards&lt;BR /&gt;&lt;BR /&gt;Aashique</description>
      <pubDate>Wed, 12 Mar 2008 04:27:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096972#M443457</guid>
      <dc:creator>Aashique</dc:creator>
      <dc:date>2008-03-12T04:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096973#M443458</link>
      <description>&lt;!--!*#--&gt;hi Oldschool and Bill,&lt;BR /&gt;&lt;BR /&gt;I thank you for making these clarifications. I was not really aware of these *Intricacies* in shell scripting... :(&lt;BR /&gt;&lt;BR /&gt;it seems that the last poster did not read your post properly, so i will post the new script with corrections made as per your recommendations:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;echo "enter the number"&lt;BR /&gt;read number1&lt;BR /&gt;echo "enter the number"&lt;BR /&gt;read number2&lt;BR /&gt;if [ $number1 -eq $number2 ]&lt;BR /&gt; then&lt;BR /&gt;  echo "matching"&lt;BR /&gt;  exit&lt;BR /&gt; else [ $number1 -ne $number2 ]&lt;BR /&gt;  echo "Not matching"&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;Sorry for inconvenices!&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Mar 2008 09:00:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096973#M443458</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2008-03-13T09:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: shell script error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096974#M443459</link>
      <description>I closed&lt;BR /&gt;</description>
      <pubDate>Sat, 15 Mar 2008 06:11:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-error/m-p/5096974#M443459</guid>
      <dc:creator>Sajjad Sahir</dc:creator>
      <dc:date>2008-03-15T06:11:27Z</dc:date>
    </item>
  </channel>
</rss>

