<?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: need some script help please in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278589#M180004</link>
    <description>Kristopher,&lt;BR /&gt;&lt;BR /&gt;If you named your script 'testscript', try it like this:&lt;BR /&gt;&lt;BR /&gt;./testscript &lt;CITYLIST.TXT&gt;&lt;/CITYLIST.TXT&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
    <pubDate>Mon, 17 May 2004 15:08:57 GMT</pubDate>
    <dc:creator>John Poff</dc:creator>
    <dc:date>2004-05-17T15:08:57Z</dc:date>
    <item>
      <title>need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278579#M179994</link>
      <description>How can I place the value of two variables into one file on the same line? &lt;BR /&gt;&lt;BR /&gt;See below: &lt;BR /&gt;&lt;BR /&gt;I am trying to print two values to one line in a file. After the values are read into the file, I will cat the file and read the new values. &lt;BR /&gt;&lt;BR /&gt;% cat citylist.txt &lt;BR /&gt;&lt;BR /&gt;Columbus, OH 1999&lt;BR /&gt;Travis, TX 1998&lt;BR /&gt;Methuen, MA 2001&lt;BR /&gt;Salem, NH 2004&lt;BR /&gt;&lt;BR /&gt;CITY=`cat citylist | awk '{print $1}'&lt;BR /&gt;CDATE=`cat citylist.txt | awk '{print $3}'&lt;BR /&gt;TWO=2&lt;BR /&gt;export CITY CDATE TWO&lt;BR /&gt;# I want to subtract field 2 ($2) by 2 years and then place the new value in a new file. &lt;BR /&gt;&lt;BR /&gt;((NEWDATE=$CDATE-$TWO))&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;printf "%s %s \n" $CITY $NEWDATE &amp;gt; /tmp/newdate&lt;BR /&gt;&lt;BR /&gt;cat /tmp/newdate&lt;BR /&gt;&lt;BR /&gt;Columbus, OH 1997&lt;BR /&gt;Travis, TX 1996&lt;BR /&gt;Methuen, MA 1999&lt;BR /&gt;Salem, NH 2002&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;But this doesn't work. Where am I going wrong? &lt;BR /&gt;</description>
      <pubDate>Mon, 17 May 2004 14:17:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278579#M179994</guid>
      <dc:creator>Kristopher March</dc:creator>
      <dc:date>2004-05-17T14:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278580#M179995</link>
      <description>I could be wrong, but your first line in your INPUT file appears to be a blank-line.&lt;BR /&gt;&lt;BR /&gt;your script seems fine to me, but when you print the NEWDATE as %s, you might want to treat it as a %d.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 17 May 2004 14:25:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278580#M179995</guid>
      <dc:creator>D Block 2</dc:creator>
      <dc:date>2004-05-17T14:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278581#M179996</link>
      <description>Hi Kristopher,&lt;BR /&gt;&lt;BR /&gt;If I understand your problem correctly you&lt;BR /&gt;are missing the "," separator. The citylist.txt has 2 fields not 3.&lt;BR /&gt;Thus when you do a &lt;BR /&gt;&lt;BR /&gt;cat citylist.txt | awk '{ print $3 }' &lt;BR /&gt;it will throw a blank space.&lt;BR /&gt;&lt;BR /&gt;You need to modify your code to take into&lt;BR /&gt;account the field separator ",".&lt;BR /&gt;&lt;BR /&gt;Replace $3 with $2 in your code and check.&lt;BR /&gt;&lt;BR /&gt;-Siddhartha</description>
      <pubDate>Mon, 17 May 2004 14:29:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278581#M179996</guid>
      <dc:creator>Siddhartha M</dc:creator>
      <dc:date>2004-05-17T14:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278582#M179997</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Your command to get the city and state into the CITY variable actually will just grab the first word of the city.  Using $2 will pick up the state, but only if your city names are all one word.  Plus, you might want to put it into a loop so that you can work on the values of each line as you read them.&lt;BR /&gt;&lt;BR /&gt;You could do something like this:&lt;BR /&gt;&lt;BR /&gt;while read line&lt;BR /&gt;do&lt;BR /&gt;    CITY=`echo $line | awk '{print substr($0, 1, length($0)-4}'`&lt;BR /&gt;    CDATE=`echo $line | awk '{print $NF}'&lt;BR /&gt;&lt;BR /&gt;    ((NEWDATE=$CDATE-$TWO))&lt;BR /&gt;&lt;BR /&gt;    printf ...(etc.)&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Save that as a shell script and run it with the citylist.txt as input.&lt;BR /&gt;&lt;BR /&gt;It's not pretty but it might do what you are looking for.&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Mon, 17 May 2004 14:38:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278582#M179997</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2004-05-17T14:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278583#M179998</link>
      <description>why don't you just do  your calculation in awk. it will be easier and faster&lt;BR /&gt;&lt;BR /&gt;cat citylist.txt | awk '&lt;BR /&gt;/NF &amp;gt; 2/ {$3=$3-2;print $0;&lt;BR /&gt;}' &amp;gt; /tmp/newdate&lt;BR /&gt;&lt;BR /&gt;you might want to add some error checking to see if $3 is actually a number.</description>
      <pubDate>Mon, 17 May 2004 14:48:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278583#M179998</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2004-05-17T14:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278584#M179999</link>
      <description>John - this is for you. Here's what I've got:&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;#set -x&lt;BR /&gt;# name=testscript&lt;BR /&gt;#&lt;BR /&gt;while read line&lt;BR /&gt;do&lt;BR /&gt;CITY=`echo $line | awk '{print substr($0, 1, length($0)-4}'`&lt;BR /&gt;CDATE=`echo $line | awk '{print $NF}'`&lt;BR /&gt;TWO=2&lt;BR /&gt;export CITY CDATE TWO&lt;BR /&gt;((NEWDATE=$CDATE-$TWO))&lt;BR /&gt;printf '%s %s \n' $CITY $NEWDATE &amp;gt; newdate.txt&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;When I kick if off, it just sits at the prompt. Any other ideas?&lt;BR /&gt;&lt;BR /&gt;Curt - I'll look into your suggestion now. &lt;BR /&gt;&lt;BR /&gt;Points to come ...</description>
      <pubDate>Mon, 17 May 2004 14:50:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278584#M179999</guid>
      <dc:creator>Kristopher March</dc:creator>
      <dc:date>2004-05-17T14:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278585#M180000</link>
      <description>Siddhartha - I can awk $3 of citylist.txt and get the year back. So I think that part is working. &lt;BR /&gt;&lt;BR /&gt;Tom - what is %d as opposed to %s? &lt;BR /&gt;&lt;BR /&gt;Curt - your idea seems to do something and then outputs an empty newdate file.</description>
      <pubDate>Mon, 17 May 2004 15:02:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278585#M180000</guid>
      <dc:creator>Kristopher March</dc:creator>
      <dc:date>2004-05-17T15:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278586#M180001</link>
      <description>if your going to do it in the shell, this would be better&lt;BR /&gt;&lt;BR /&gt;TWO=2&lt;BR /&gt;while read CITY CDATE&lt;BR /&gt;do&lt;BR /&gt;((NEWDATE=$CDATE-$TWO))&lt;BR /&gt;printf '%s %d \n' $CITY $NEWDATE &lt;BR /&gt;done &amp;lt; citylist.txt &amp;gt; /tmp/newdate.txt&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 17 May 2004 15:04:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278586#M180001</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2004-05-17T15:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278587#M180002</link>
      <description>my awk script might be off by 1 field, try&lt;BR /&gt;&lt;BR /&gt;cat citylist.txt | awk '&lt;BR /&gt;/NF &amp;gt; 1/ {$2=$2-2;print $0;&lt;BR /&gt;}' &amp;gt; /tmp/newdate&lt;BR /&gt;</description>
      <pubDate>Mon, 17 May 2004 15:06:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278587#M180002</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2004-05-17T15:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278588#M180003</link>
      <description>&lt;BR /&gt;The %d stays for 'd'ecimal value.  the %s as you know, stays for 's'tring value.  &lt;BR /&gt;&lt;BR /&gt;str="abc"&lt;BR /&gt;&lt;BR /&gt;printf "%s", str&lt;BR /&gt;&lt;BR /&gt;foo=123456&lt;BR /&gt;&lt;BR /&gt;printf "%d", foo&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 17 May 2004 15:08:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278588#M180003</guid>
      <dc:creator>D Block 2</dc:creator>
      <dc:date>2004-05-17T15:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278589#M180004</link>
      <description>Kristopher,&lt;BR /&gt;&lt;BR /&gt;If you named your script 'testscript', try it like this:&lt;BR /&gt;&lt;BR /&gt;./testscript &lt;CITYLIST.TXT&gt;&lt;/CITYLIST.TXT&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Mon, 17 May 2004 15:08:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278589#M180004</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2004-05-17T15:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278590#M180005</link>
      <description>Curt - have a look:&lt;BR /&gt;&lt;BR /&gt;CDATE=`cat citylist | awk '{print $3}'`&lt;BR /&gt;CITY=`cat citylist | awk '{print $1}'`&lt;BR /&gt;TWO=2&lt;BR /&gt;while read CITY CDATE&lt;BR /&gt;do&lt;BR /&gt;((NEWDATE=$CDATE-$TWO))&lt;BR /&gt;printf '%s %d \n' $CITY $NEWDATE&lt;BR /&gt;done &amp;lt; citylist &amp;gt; newdate.txt&lt;BR /&gt;&lt;BR /&gt;which give me this: &lt;BR /&gt;&lt;BR /&gt;%cat newdate.txt &lt;BR /&gt;Columbus,OH 0 &lt;BR /&gt;Travis,TX 0 &lt;BR /&gt;Methuen,MA 0 &lt;BR /&gt;Salem,NH 0 &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 17 May 2004 15:17:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278590#M180005</guid>
      <dc:creator>Kristopher March</dc:creator>
      <dc:date>2004-05-17T15:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278591#M180006</link>
      <description>instead of&lt;BR /&gt;((NEWDATE=$CDATE-$TWO))&lt;BR /&gt;&lt;BR /&gt;do&lt;BR /&gt;&lt;BR /&gt;NEWDATE=$(($CDATE - $TWO))</description>
      <pubDate>Mon, 17 May 2004 15:21:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278591#M180006</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2004-05-17T15:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278592#M180007</link>
      <description>I changed citlist to look only have two fields.  plymouth,ma 2004&lt;BR /&gt;&lt;BR /&gt;And the awk statement to read $2 instead of $3. But still same problem.</description>
      <pubDate>Mon, 17 May 2004 15:22:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278592#M180007</guid>
      <dc:creator>Kristopher March</dc:creator>
      <dc:date>2004-05-17T15:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278593#M180008</link>
      <description>updated script: &lt;BR /&gt;&lt;BR /&gt;CDATE=`cat citylist | awk '{print $2}'`&lt;BR /&gt;CITY=`cat citylist | awk '{print $1}'`&lt;BR /&gt;TWO=2&lt;BR /&gt;while read CITY CDATE&lt;BR /&gt;do&lt;BR /&gt;NEWDATE=$(($CDATE - $TWO))&lt;BR /&gt;printf '%s %d \n' $CITY $NEWDATE&lt;BR /&gt;done &amp;lt; citylist &amp;gt; newdate.txt&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;now I get: &lt;BR /&gt;./testscript2: syntax error at line 10: `NEWDATE=$' unexpected&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 17 May 2004 15:27:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278593#M180008</guid>
      <dc:creator>Kristopher March</dc:creator>
      <dc:date>2004-05-17T15:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278594#M180009</link>
      <description>try this:&lt;BR /&gt;&lt;BR /&gt;cat citylist.txt | awk '{print $2;}'&lt;BR /&gt;&lt;BR /&gt;you should be getting the year&lt;BR /&gt;&lt;BR /&gt;they try:&lt;BR /&gt;&lt;BR /&gt;cat citylist.txt | awk '{a=$2-2;print $a;}'&lt;BR /&gt;&lt;BR /&gt;then:&lt;BR /&gt;&lt;BR /&gt;cat citylist.txt | awk '{$2=$2-2;print $2;}'&lt;BR /&gt;&lt;BR /&gt;then&lt;BR /&gt;&lt;BR /&gt;cat citylist.txt | awk '{$2=$2-2;print $0;}'</description>
      <pubDate>Mon, 17 May 2004 15:28:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278594#M180009</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2004-05-17T15:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278595#M180010</link>
      <description>you have a typo somewhere&lt;BR /&gt;&lt;BR /&gt;you can comment these lines out as they are unnecessary&lt;BR /&gt;&lt;BR /&gt;CDATE=`cat citylist | awk '{print $2}'`&lt;BR /&gt;CITY=`cat citylist | awk '{print $1}'`&lt;BR /&gt;&lt;BR /&gt;to&lt;BR /&gt;&lt;BR /&gt;#CDATE=`cat citylist | awk '{print $2}'`&lt;BR /&gt;#CITY=`cat citylist | awk '{print $1}'`&lt;BR /&gt;</description>
      <pubDate>Mon, 17 May 2004 15:32:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278595#M180010</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2004-05-17T15:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278596#M180011</link>
      <description>Curt has you on the right track.  Try this:&lt;BR /&gt;&lt;BR /&gt;awk '{$NF=$NF-2; print $0;}' citylist.txt&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If that looks good, you can redirect the output to the /tmp/newdate file like this:&lt;BR /&gt;&lt;BR /&gt;awk '{$NF=$NF-2; print $0;}' citylist.txt &amp;gt;/tmp/newdate&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Mon, 17 May 2004 15:32:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278596#M180011</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2004-05-17T15:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278597#M180012</link>
      <description>Check this:(seems to produce the desired output)&lt;BR /&gt;&lt;BR /&gt;$cat citylist&lt;BR /&gt;Columbus,OH 1999&lt;BR /&gt;Travis,TX 1998&lt;BR /&gt;Methuen,MA 2001&lt;BR /&gt;Salem,NH 2004&lt;BR /&gt;$&lt;BR /&gt;$cat newdate.txt&lt;BR /&gt;cat: Cannot open newdate.txt: No such file or directory&lt;BR /&gt;$&lt;BR /&gt;$cat itrc&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;CDATE=`cat citylist | awk '{print $2}'`&lt;BR /&gt;CITY=`cat citylist | awk '{print $1}'`&lt;BR /&gt;TWO=2&lt;BR /&gt;while read CITY CDATE&lt;BR /&gt;do&lt;BR /&gt;((NEWDATE=$CDATE-$TWO))&lt;BR /&gt;printf '%s %d \n' $CITY $NEWDATE&lt;BR /&gt;done &amp;lt; citylist &amp;gt; newdate.txt&lt;BR /&gt;$&lt;BR /&gt;$&lt;BR /&gt;$sh itrc&lt;BR /&gt;$&lt;BR /&gt;$cat newdate.txt&lt;BR /&gt;Columbus,OH 1997&lt;BR /&gt;Travis,TX 1996&lt;BR /&gt;Methuen,MA 1999&lt;BR /&gt;Salem,NH 2002</description>
      <pubDate>Mon, 17 May 2004 15:33:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278597#M180012</guid>
      <dc:creator>Siddhartha M</dc:creator>
      <dc:date>2004-05-17T15:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: need some script help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278598#M180013</link>
      <description>The trick with using $2 and $3 is ok if you only have city names that are one word. But what happens if your file includes?:&lt;BR /&gt;&lt;BR /&gt;New Orleans, LA 1999&lt;BR /&gt;&lt;BR /&gt;The NF variable in awk returns the number of fields read on a line, and the $NF variable is the value of the last variable on the line.  If you use $NF in Curt's awk example, you can be sure that you will always get the year, no matter what the city name is. &lt;BR /&gt;&lt;BR /&gt;Specifying the input file on the command line with awk saves using cat and piping it to awk.&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Mon, 17 May 2004 15:42:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-some-script-help-please/m-p/3278598#M180013</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2004-05-17T15:42:14Z</dc:date>
    </item>
  </channel>
</rss>

