<?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 While loop stuck in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332904#M189409</link>
    <description>To give a short description what i am doing in the script is reading from a regular text file for the directory structure and changing it to another format and creating the structure, but the problem is once it reads a line from the text file it fails on the second line, I am stuck with the while loop any suggestions please.&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;The REQFILE has&lt;BR /&gt;/RIP/module/resources/com/res/app/email/htmlConfirmationEmailHP.txt&lt;BR /&gt;RIP/module/resources/com/crm/client/UserMessages.properties&lt;BR /&gt;RIP/module/config/html/BrandDetectorServlet.properties&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Script:&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;STAGEDIR=/home/user/Patch/build_patch/lists&lt;BR /&gt;SCRIPTDIR=/home/user/Patch&lt;BR /&gt;&lt;BR /&gt;REQFILE=rip_files.txt&lt;BR /&gt;START=(What should I put)&lt;BR /&gt;END=`cat $REQFILE|wc -l`&lt;BR /&gt;echo $END&lt;BR /&gt;while [ $START -lt $END ]&lt;BR /&gt;do&lt;BR /&gt;for FLPATHNM in `cat $REQFILE`&lt;BR /&gt;do&lt;BR /&gt;cd $STAGEDIR&lt;BR /&gt;&lt;BR /&gt;FSTCHR=`echo $FLPATHNM|awk '{print substr($0,1,1)}'`&lt;BR /&gt;LSTCHR=`echo $FLPATHNM|awk '{print substr($0,length($0),1)}'`&lt;BR /&gt;if [ $FSTCHR = "/" ]&lt;BR /&gt;then FLPATHNM1=`echo $FLPATHNM|awk '{print substr($0,2,length($0))}'`&lt;BR /&gt;else FLPATHNM1=`echo $FLPATHNM`&lt;BR /&gt;fi&lt;BR /&gt;if [ $LSTCHR = "/" ]&lt;BR /&gt;then TFLPATHNM2=`echo $FLPATHNM1|awk '{print substr($0,1,length($0)-1)}'`&lt;BR /&gt;else TFLPATHNM2=`echo $FLPATHNM1`&lt;BR /&gt;&lt;BR /&gt;fi&lt;BR /&gt;TFLPATHNM4=`echo $TFLPATHNM2|sed 's/RIP\/module\/resources/temp\/RIP\/lib\/resourcepatches/'`&lt;BR /&gt;TFLPATHNM4=`echo $TFLPATHNM2|sed 's/RIP\/module\/config/temp\/RIP\/lib\/configpatches/'`&lt;BR /&gt;&lt;BR /&gt;FLPATHNM2=$TFLPATHNM4&lt;BR /&gt;LENPATH=`echo $FLPATHNM2|awk '{print length()}'`&lt;BR /&gt;SLSHFLG=0&lt;BR /&gt;SLSHPOS=X&lt;BR /&gt;while [ $SLSHFLG -ne 1 ] &amp;amp;&amp;amp; [ $LENPATH -gt 0 ]&lt;BR /&gt;do&lt;BR /&gt;CHRLKCMP=`echo $FLPATHNM2|awk '{print substr($0,'$LENPATH',1)}'`&lt;BR /&gt;if [ $CHRLKCMP = "/" ]&lt;BR /&gt;then SLSHFLG=1&lt;BR /&gt;SLSHPOS=$LENPATH&lt;BR /&gt;fi&lt;BR /&gt;((LENPATH = LENPATH - 1))&lt;BR /&gt;done&lt;BR /&gt;((SLSHPOS = SLSHPOS + 1))&lt;BR /&gt;CDPATH=`echo $FILENM|awk '{print substr($0,1,'$LENPATH')}'`&lt;BR /&gt;FILENM=`echo $FILENM|awk '{print substr($0,'$SLSHPOS',length())}'`&lt;BR /&gt;FSTCHR=`echo $FLPATHNM2|awk '{print substr($0,1,1)}'`&lt;BR /&gt;if [ $FSTCHR = "/" ]&lt;BR /&gt;then FILENM=`echo $FLPATHNM2|awk '{print substr($0,2)}'`&lt;BR /&gt;else FILENM=$FLPATHNM2&lt;BR /&gt;fi&lt;BR /&gt;LENPATH=`echo $FILENM|awk '{print length()}'`&lt;BR /&gt;SLSHFLG=0&lt;BR /&gt;SLSHPOS=X&lt;BR /&gt;while [ $SLSHFLG -ne 1 ] &amp;amp;&amp;amp; [ $LENPATH -gt 0 ]&lt;BR /&gt;do&lt;BR /&gt;CHRLKCMP=`echo $FILENM|awk '{print substr($0,'$LENPATH',1)}'`&lt;BR /&gt;if [ $CHRLKCMP = "/" ]&lt;BR /&gt;then SLSHFLG=1&lt;BR /&gt;SLSHPOS=$LENPATH&lt;BR /&gt;fi&lt;BR /&gt;((LENPATH = LENPATH - 1))&lt;BR /&gt;done&lt;BR /&gt;if [ $SLSHPOS = X ]&lt;BR /&gt;then echo "ERROR: "$FILENM": Path Specified Is Incorrect!"&lt;BR /&gt;continue&lt;BR /&gt;fi&lt;BR /&gt;((SLSHPOS = SLSHPOS + 1))&lt;BR /&gt;cd /home/user/Patch&lt;BR /&gt;CDPATH=`echo $FILENM|awk '{print substr($0,1,'$LENPATH')}'`&lt;BR /&gt;echo $CDPATH&lt;BR /&gt;FILENM=`echo $FILENM|awk '{print substr($0,'$SLSHPOS',length())}'`&lt;BR /&gt;if [ -a $SCRIPTDIR/$CDPATH ]&lt;BR /&gt;then cd $SCRIPTDIR/$CDPATH&lt;BR /&gt;cp $MODULEDIR/$TFLPATHNM2 $SCRIPTDIR/$CDPATH&lt;BR /&gt;else mkdir -p $CDPATH&lt;BR /&gt;cp $MODULEDIR/$TFLPATHNM2 $SCRIPTDIR/$CDPATH&lt;BR /&gt;continue&lt;BR /&gt;fi&lt;BR /&gt;echo "-&amp;gt; File: "$FILENM&lt;BR /&gt;done&lt;BR /&gt;done(end while loop)</description>
    <pubDate>Thu, 15 Jul 2004 16:09:50 GMT</pubDate>
    <dc:creator>Vanquish</dc:creator>
    <dc:date>2004-07-15T16:09:50Z</dc:date>
    <item>
      <title>While loop stuck</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332904#M189409</link>
      <description>To give a short description what i am doing in the script is reading from a regular text file for the directory structure and changing it to another format and creating the structure, but the problem is once it reads a line from the text file it fails on the second line, I am stuck with the while loop any suggestions please.&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;The REQFILE has&lt;BR /&gt;/RIP/module/resources/com/res/app/email/htmlConfirmationEmailHP.txt&lt;BR /&gt;RIP/module/resources/com/crm/client/UserMessages.properties&lt;BR /&gt;RIP/module/config/html/BrandDetectorServlet.properties&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Script:&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;STAGEDIR=/home/user/Patch/build_patch/lists&lt;BR /&gt;SCRIPTDIR=/home/user/Patch&lt;BR /&gt;&lt;BR /&gt;REQFILE=rip_files.txt&lt;BR /&gt;START=(What should I put)&lt;BR /&gt;END=`cat $REQFILE|wc -l`&lt;BR /&gt;echo $END&lt;BR /&gt;while [ $START -lt $END ]&lt;BR /&gt;do&lt;BR /&gt;for FLPATHNM in `cat $REQFILE`&lt;BR /&gt;do&lt;BR /&gt;cd $STAGEDIR&lt;BR /&gt;&lt;BR /&gt;FSTCHR=`echo $FLPATHNM|awk '{print substr($0,1,1)}'`&lt;BR /&gt;LSTCHR=`echo $FLPATHNM|awk '{print substr($0,length($0),1)}'`&lt;BR /&gt;if [ $FSTCHR = "/" ]&lt;BR /&gt;then FLPATHNM1=`echo $FLPATHNM|awk '{print substr($0,2,length($0))}'`&lt;BR /&gt;else FLPATHNM1=`echo $FLPATHNM`&lt;BR /&gt;fi&lt;BR /&gt;if [ $LSTCHR = "/" ]&lt;BR /&gt;then TFLPATHNM2=`echo $FLPATHNM1|awk '{print substr($0,1,length($0)-1)}'`&lt;BR /&gt;else TFLPATHNM2=`echo $FLPATHNM1`&lt;BR /&gt;&lt;BR /&gt;fi&lt;BR /&gt;TFLPATHNM4=`echo $TFLPATHNM2|sed 's/RIP\/module\/resources/temp\/RIP\/lib\/resourcepatches/'`&lt;BR /&gt;TFLPATHNM4=`echo $TFLPATHNM2|sed 's/RIP\/module\/config/temp\/RIP\/lib\/configpatches/'`&lt;BR /&gt;&lt;BR /&gt;FLPATHNM2=$TFLPATHNM4&lt;BR /&gt;LENPATH=`echo $FLPATHNM2|awk '{print length()}'`&lt;BR /&gt;SLSHFLG=0&lt;BR /&gt;SLSHPOS=X&lt;BR /&gt;while [ $SLSHFLG -ne 1 ] &amp;amp;&amp;amp; [ $LENPATH -gt 0 ]&lt;BR /&gt;do&lt;BR /&gt;CHRLKCMP=`echo $FLPATHNM2|awk '{print substr($0,'$LENPATH',1)}'`&lt;BR /&gt;if [ $CHRLKCMP = "/" ]&lt;BR /&gt;then SLSHFLG=1&lt;BR /&gt;SLSHPOS=$LENPATH&lt;BR /&gt;fi&lt;BR /&gt;((LENPATH = LENPATH - 1))&lt;BR /&gt;done&lt;BR /&gt;((SLSHPOS = SLSHPOS + 1))&lt;BR /&gt;CDPATH=`echo $FILENM|awk '{print substr($0,1,'$LENPATH')}'`&lt;BR /&gt;FILENM=`echo $FILENM|awk '{print substr($0,'$SLSHPOS',length())}'`&lt;BR /&gt;FSTCHR=`echo $FLPATHNM2|awk '{print substr($0,1,1)}'`&lt;BR /&gt;if [ $FSTCHR = "/" ]&lt;BR /&gt;then FILENM=`echo $FLPATHNM2|awk '{print substr($0,2)}'`&lt;BR /&gt;else FILENM=$FLPATHNM2&lt;BR /&gt;fi&lt;BR /&gt;LENPATH=`echo $FILENM|awk '{print length()}'`&lt;BR /&gt;SLSHFLG=0&lt;BR /&gt;SLSHPOS=X&lt;BR /&gt;while [ $SLSHFLG -ne 1 ] &amp;amp;&amp;amp; [ $LENPATH -gt 0 ]&lt;BR /&gt;do&lt;BR /&gt;CHRLKCMP=`echo $FILENM|awk '{print substr($0,'$LENPATH',1)}'`&lt;BR /&gt;if [ $CHRLKCMP = "/" ]&lt;BR /&gt;then SLSHFLG=1&lt;BR /&gt;SLSHPOS=$LENPATH&lt;BR /&gt;fi&lt;BR /&gt;((LENPATH = LENPATH - 1))&lt;BR /&gt;done&lt;BR /&gt;if [ $SLSHPOS = X ]&lt;BR /&gt;then echo "ERROR: "$FILENM": Path Specified Is Incorrect!"&lt;BR /&gt;continue&lt;BR /&gt;fi&lt;BR /&gt;((SLSHPOS = SLSHPOS + 1))&lt;BR /&gt;cd /home/user/Patch&lt;BR /&gt;CDPATH=`echo $FILENM|awk '{print substr($0,1,'$LENPATH')}'`&lt;BR /&gt;echo $CDPATH&lt;BR /&gt;FILENM=`echo $FILENM|awk '{print substr($0,'$SLSHPOS',length())}'`&lt;BR /&gt;if [ -a $SCRIPTDIR/$CDPATH ]&lt;BR /&gt;then cd $SCRIPTDIR/$CDPATH&lt;BR /&gt;cp $MODULEDIR/$TFLPATHNM2 $SCRIPTDIR/$CDPATH&lt;BR /&gt;else mkdir -p $CDPATH&lt;BR /&gt;cp $MODULEDIR/$TFLPATHNM2 $SCRIPTDIR/$CDPATH&lt;BR /&gt;continue&lt;BR /&gt;fi&lt;BR /&gt;echo "-&amp;gt; File: "$FILENM&lt;BR /&gt;done&lt;BR /&gt;done(end while loop)</description>
      <pubDate>Thu, 15 Jul 2004 16:09:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332904#M189409</guid>
      <dc:creator>Vanquish</dc:creator>
      <dc:date>2004-07-15T16:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: While loop stuck</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332905#M189410</link>
      <description>How about:&lt;BR /&gt;&lt;BR /&gt;while read LINE&lt;BR /&gt;do&lt;BR /&gt;....&lt;BR /&gt;all your stuff&lt;BR /&gt;....&lt;BR /&gt;done &amp;lt; ${REQFILE}&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Jul 2004 16:29:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332905#M189410</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2004-07-15T16:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: While loop stuck</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332906#M189411</link>
      <description>well you have&lt;BR /&gt;&lt;BR /&gt;while [ $START -lt $END ]&lt;BR /&gt;do&lt;BR /&gt;for FLPATHNM in `cat $REQFILE`&lt;BR /&gt;do&lt;BR /&gt;cd $STAGEDIR&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;done&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;the value of start and end never change. it is just like putting a while true do around your for loop.  it doesn't do anything in this example.  so the while start -lt end can be removed completely and the for loop is better written as the previous poster suggested.  myself i like to see where my input is coming from at the begining of the while loop instead of the end, so I'd write it this way&lt;BR /&gt;&lt;BR /&gt;cd $STAGEDIR&lt;BR /&gt;cat $REQFILE |&lt;BR /&gt;while read FLPATHNM&lt;BR /&gt;do&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;it is also more efficient to preform the cd only once instead of for everytime through the loop.&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Jul 2004 17:14:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332906#M189411</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2004-07-15T17:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: While loop stuck</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332907#M189412</link>
      <description>another suggestion would be to learn to use the substring parameter expansions of the shell.&lt;BR /&gt;&lt;BR /&gt;char2on=${FLPATHNM#?}&lt;BR /&gt;char1toNextToLast=${FLPATHNM%?}&lt;BR /&gt;fchar=${FLPATHNM%$char2on}&lt;BR /&gt;lchar=${FLPATHNM#$char1toNextToLast}&lt;BR /&gt;&lt;BR /&gt;if [ $fchar = "/" ]&lt;BR /&gt;then FLPATHNM1=$char2on&lt;BR /&gt;else FLPATHNM1=$FLPATHNM&lt;BR /&gt;fi&lt;BR /&gt;if [ $lchar = "/" ]&lt;BR /&gt;then TFLPATHNM2=$char1toNextToLast&lt;BR /&gt;else TFLPATHNM2=$FLPATHNM1&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;does the same thing as&lt;BR /&gt;&lt;BR /&gt;FSTCHR=`echo $FLPATHNM|awk '{print substr($0,1,1)}'`&lt;BR /&gt;LSTCHR=`echo $FLPATHNM|awk '{print substr($0,length($0),1)}'`&lt;BR /&gt;if [ $FSTCHR = "/" ]&lt;BR /&gt;then FLPATHNM1=`echo $FLPATHNM|awk '{print substr($0,2,length($0))}'`&lt;BR /&gt;else FLPATHNM1=`echo $FLPATHNM`&lt;BR /&gt;fi&lt;BR /&gt;if [ $LSTCHR = "/" ]&lt;BR /&gt;then TFLPATHNM2=`echo $FLPATHNM1|awk '{print substr($0,1,length($0)-1)}'`&lt;BR /&gt;else TFLPATHNM2=`echo $FLPATHNM1`&lt;BR /&gt;&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;only about 5000 times faster</description>
      <pubDate>Thu, 15 Jul 2004 17:40:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332907#M189412</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2004-07-15T17:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: While loop stuck</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332908#M189413</link>
      <description>In this instance you do not need the while loop at all as you are going through each entry in your input file in this for loop:&lt;BR /&gt;for FLPATHNM in `cat $REQFILE`&lt;BR /&gt;&lt;BR /&gt;I'm sure you are aware that you can't move your:&lt;BR /&gt;cd $STAGEDIR&lt;BR /&gt;outside the loop as you may or may not change directory later in your for loop and you do want to start at the right place the next time round I guess.</description>
      <pubDate>Thu, 15 Jul 2004 17:54:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332908#M189413</guid>
      <dc:creator>Duncan Galbraith</dc:creator>
      <dc:date>2004-07-15T17:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: While loop stuck</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332909#M189414</link>
      <description>TFLPATHNM4=`echo $TFLPATHNM2|sed 's/RIP\/module\/config/temp\/RIP\/lib\/configpatches/'`&lt;BR /&gt;&lt;BR /&gt;could be more readable as&lt;BR /&gt;&lt;BR /&gt;TFLPATHNM4=`echo $TFLPATHNM2|sed 's!RIP/module/config!temp/RIP/lib/configpatches!'`&lt;BR /&gt;&lt;BR /&gt;in sed the regular expression can be delimited by any character execpt a blank or a newline.  So, if the pattern contains slashes, you could chosse another character, such as an exclamation mark as the delimiter.&lt;BR /&gt;&lt;BR /&gt;and you can put both the subsitutions in the same command&lt;BR /&gt;&lt;BR /&gt;TFLPATHNM4=`echo $TFLPATHNM2|sed -e 's!RIP/module/resources!temp/RIP/lib/resourcepatches!' -e 's!RIP/module/config!temp/RIP/lib/configpatches!'`&lt;BR /&gt;&lt;BR /&gt;LENPATH=${#FLPATHNM2)&lt;BR /&gt;is much faster then&lt;BR /&gt;LENPATH=`echo $FLPATHNM2|awk '{print length()}'`&lt;BR /&gt;&lt;BR /&gt;SLSHPOS=X&lt;BR /&gt;...&lt;BR /&gt;((SLSHPOS = SLSHPOS + 1))&lt;BR /&gt;....&lt;BR /&gt;FILENM=`echo $FILENM|awk '{print substr($0,'$SLSHPOS',length())}'`&lt;BR /&gt;&lt;BR /&gt;I don't know how well using alphabetic characters are going to work when used in numeric contexts.  I'd think you'd be better of using only digits.&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Jul 2004 18:34:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332909#M189414</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2004-07-15T18:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: While loop stuck</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332910#M189415</link>
      <description>not to sure what your doing here&lt;BR /&gt;&lt;BR /&gt;SLSHFLG=0&lt;BR /&gt;SLSHPOS=X&lt;BR /&gt;while [ $SLSHFLG -ne 1 ] &amp;amp;&amp;amp; [ $LENPATH -gt 0 ]&lt;BR /&gt;do&lt;BR /&gt;CHRLKCMP=`echo $FLPATHNM2|awk '{print substr($0,'$LENPATH',1)}'`&lt;BR /&gt;if [ $CHRLKCMP = "/" ]&lt;BR /&gt;then SLSHFLG=1&lt;BR /&gt;SLSHPOS=$LENPATH&lt;BR /&gt;fi&lt;BR /&gt;((LENPATH = LENPATH - 1))&lt;BR /&gt;done&lt;BR /&gt;((SLSHPOS = SLSHPOS + 1))&lt;BR /&gt;CDPATH=`echo $FILENM|awk '{print substr($0,1,'$LENPATH')}'`&lt;BR /&gt;FILENM=`echo $FILENM|awk '{print substr($0,'$SLSHPOS',length())}'`&lt;BR /&gt;FSTCHR=`echo $FLPATHNM2|awk '{print substr($0,1,1)}'`&lt;BR /&gt;&lt;BR /&gt;but your computing LENPATH and SLSHPOS using $FLPATHNM2 then applying it to FILENM&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;slshpos=${FLPATHNM2%/*}&lt;BR /&gt;slshpos=$((${#slshpos} + 1 ))&lt;BR /&gt;#lenpath=slshpos&lt;BR /&gt;echo $FILENM|awk -v slash=$slshpos '{&lt;BR /&gt;path=substr($0,1,slash);&lt;BR /&gt;file=substr($0,slash,length());&lt;BR /&gt;print path " " file;&lt;BR /&gt;}' | read cdpath filenm&lt;BR /&gt;&lt;BR /&gt;does the same thing&lt;BR /&gt;&lt;BR /&gt;and you already removed the leading slash once so it is redunant to do it again&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Jul 2004 19:23:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332910#M189415</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2004-07-15T19:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: While loop stuck</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332911#M189416</link>
      <description>Thanks a lot Mr Curt Larson, I wish i could think like you may be one day. &lt;BR /&gt;Thanks Everyone&lt;BR /&gt;Thanks Again Mr Curt Larson&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Jul 2004 09:15:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/while-loop-stuck/m-p/3332911#M189416</guid>
      <dc:creator>Vanquish</dc:creator>
      <dc:date>2004-07-16T09:15:33Z</dc:date>
    </item>
  </channel>
</rss>

