<?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: ksh help please in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021696#M909482</link>
    <description>I take it that parts of my script should be modified and left at the beginning? &lt;BR /&gt;&lt;BR /&gt;No, the script I attached should be all you need.  The #!/usr/bin/ksh should start at column 1.  And, feel free to add as many comments as you need.  After all, your the one that needs to know how things are done.&lt;BR /&gt;&lt;BR /&gt;I ran your script and it listed all dirs/files in /appe/eng then gives me the folowing syntax error: &lt;BR /&gt;+ PS3=please enter a number -&amp;gt; &lt;BR /&gt;/sjs/cadf[19]: syntax error at line 23 : `${fromDir}*${file}' unexpected &lt;BR /&gt;&lt;BR /&gt;this is for the same reason I had mention previously, the "case" statement just after the PS3 assignment is missing it's "in".&lt;BR /&gt;&lt;BR /&gt;select i in $(find $fromDir -name $file) &lt;BR /&gt;do &lt;BR /&gt;case $i &lt;BR /&gt;${fromDir}*${file}) &lt;BR /&gt;&lt;BR /&gt;should be&lt;BR /&gt;&lt;BR /&gt;select i in $(find $fromDir -name $file) &lt;BR /&gt;do &lt;BR /&gt;case $i in ${fromDir}*${file}) &lt;BR /&gt;&lt;BR /&gt;But, with the script a provided none of that is necessary.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 14 Jul 2003 13:16:32 GMT</pubDate>
    <dc:creator>curt larson_1</dc:creator>
    <dc:date>2003-07-14T13:16:32Z</dc:date>
    <item>
      <title>ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021682#M909468</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I know most of you can do this in your sleep, not me.&lt;BR /&gt;&lt;BR /&gt;What I need should be fairly simple. I want to move selected files from one drive/jobdir to another drive/jobdir. The job # is always the same on both drives ex. 29999 but of course the job number changes with each job.&lt;BR /&gt;&lt;BR /&gt;So in the following script, I enter $cadf 29999&lt;BR /&gt;at the prompt and want to select from a list of files to move from /appe/anydir/29999 to /appc/anydir/29999, (anydir would be subdirs between drive name and job number).&lt;BR /&gt;&lt;BR /&gt;Here's what I have that works so far. I have trouble getting scripts to be interactive asking questions.&lt;BR /&gt;&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;# @(#)cadf   &lt;BR /&gt;# located /sjs/cadf&lt;BR /&gt;#&lt;BR /&gt;# program searches /appe dirs for job number dir, gets a list of files in dir,&lt;BR /&gt;# asks which files you want, then moves the files to /appc dir for same job &lt;BR /&gt;# number&lt;BR /&gt;# &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;set -x   # for debugging&lt;BR /&gt;&lt;BR /&gt;E=$(find /appe/eng -name $1)&lt;BR /&gt;cd $E&lt;BR /&gt;engdir=$(pwd)&lt;BR /&gt;C=$(find /appc/cad -name $1)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;for f in $engdir&lt;BR /&gt;    do&lt;BR /&gt;    mv -i $engdir/* $C/&lt;BR /&gt;    done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks for any help.&lt;BR /&gt;&lt;BR /&gt;John</description>
      <pubDate>Fri, 11 Jul 2003 17:17:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021682#M909468</guid>
      <dc:creator>John Stiles</dc:creator>
      <dc:date>2003-07-11T17:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021683#M909469</link>
      <description>could you answer a couple questions&lt;BR /&gt;&lt;BR /&gt;1) is there only one /appe/anydir/29999&lt;BR /&gt;or is it possible that /appe/anydira/29999 and /appe/anydirb/29999 both exist.&lt;BR /&gt;&lt;BR /&gt;2) same as 1 except for /appc/anydir&lt;BR /&gt;&lt;BR /&gt;3) is there a one to one correspondence between /appe/anydir/29999 and /appc/anydir/29999, ie /appe/a/b/29999 always matches /appc/a/b/29999&lt;BR /&gt;&lt;BR /&gt;4) will both directories always exist&lt;BR /&gt;&lt;BR /&gt;5) do you want to overwrite any files in /appe/anydir/29999 regardless if they exist or not.</description>
      <pubDate>Fri, 11 Jul 2003 17:40:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021683#M909469</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2003-07-11T17:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021684#M909470</link>
      <description>curt,&lt;BR /&gt;&lt;BR /&gt;1-2) /appe and /appc are always constant drive names.&lt;BR /&gt;the job number only exists once on each drive.&lt;BR /&gt;&lt;BR /&gt;3) not always. anydir can sometimes be variable.&lt;BR /&gt;&lt;BR /&gt;4) yes.&lt;BR /&gt;&lt;BR /&gt;5) yes. I would want to overwrite files going from /appe/... to /appc/... &lt;BR /&gt;It would be nice to have it ask and/or give the option to change the name.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;John</description>
      <pubDate>Fri, 11 Jul 2003 17:57:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021684#M909470</guid>
      <dc:creator>John Stiles</dc:creator>
      <dc:date>2003-07-11T17:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021685#M909471</link>
      <description>something quick&lt;BR /&gt;&lt;BR /&gt;fromDir=/appe/eng&lt;BR /&gt;toDir=/apc/cad&lt;BR /&gt;file=$1&lt;BR /&gt;&lt;BR /&gt;PS3='please enter a number -&amp;gt; '&lt;BR /&gt;select i in $(find $fromDir -name $file)&lt;BR /&gt;do &lt;BR /&gt;case $i&lt;BR /&gt;${fromDir}*${file})&lt;BR /&gt;tmpDir=${i#$fromDir/}&lt;BR /&gt;tmpDir="$toDir/$tmpDir"&lt;BR /&gt;break;;&lt;BR /&gt;&lt;BR /&gt;*) print "invalid number";;&lt;BR /&gt;esac&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;mv $fromDir/* $tmpDir;;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 11 Jul 2003 18:06:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021685#M909471</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2003-07-11T18:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021686#M909472</link>
      <description>curt,&lt;BR /&gt;&lt;BR /&gt;ran it using cadf 29999&lt;BR /&gt;&lt;BR /&gt;get /sjs/cadf[58]: syntax error at line 62 : `${fromDir}*${file}' unexpected&lt;BR /&gt;&lt;BR /&gt;John&lt;BR /&gt;&lt;BR /&gt;Getting near quitting time. They make me leave at 3:30 on Friday. I'll be able to work on it more on Monday.&lt;BR /&gt;&lt;BR /&gt;Have a Great Weekend.</description>
      <pubDate>Fri, 11 Jul 2003 18:19:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021686#M909472</guid>
      <dc:creator>John Stiles</dc:creator>
      <dc:date>2003-07-11T18:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021687#M909473</link>
      <description>curt,&lt;BR /&gt;&lt;BR /&gt;the 29999 is a directory. the files under it are what we need, the file names are unknown.&lt;BR /&gt;&lt;BR /&gt;John</description>
      <pubDate>Fri, 11 Jul 2003 18:22:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021687#M909473</guid>
      <dc:creator>John Stiles</dc:creator>
      <dc:date>2003-07-11T18:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021688#M909474</link>
      <description>thanks for answering the questions.  that gives me a better understanding of what your doing.  And brings up a couple more questions&lt;BR /&gt;&lt;BR /&gt;do you want to only ask for a new file name if the file already exists&lt;BR /&gt;&lt;BR /&gt;of ask for each file&lt;BR /&gt;&lt;BR /&gt;your start is pretty good&lt;BR /&gt;&lt;BR /&gt;E=$(find /appe/eng -name $1) &lt;BR /&gt;cd $E &lt;BR /&gt;engdir=$(pwd) &lt;BR /&gt;C=$(find /appc/cad -name $1) &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;for f in $(ls $engdir ) &lt;BR /&gt;do &lt;BR /&gt;if [ -f ${engdir}/$f ] ;then #only do files&lt;BR /&gt; if [ -f $C/$f ] ;then &lt;BR /&gt;  # do this if the file already exists&lt;BR /&gt;  print "$C/f already exists do you want to overwrite it (y/n)? "&lt;BR /&gt;  read answer&lt;BR /&gt;  case $answer in&lt;BR /&gt;   #if yes just overwrite the file&lt;BR /&gt;   [Y|y]*) mv $engdir/$f $C/$f;;&lt;BR /&gt;   #anything else ask for a new file name&lt;BR /&gt;   *) print "what do you want to rename the file, $f, as? "&lt;BR /&gt;     read answer&lt;BR /&gt;     #might want to do some testing for valid per naming standard&lt;BR /&gt;     mv $engdir/$f $C/$answer ;;&lt;BR /&gt;  esac&lt;BR /&gt; else  #file doesn't exist so just copy it&lt;BR /&gt;  mv $engdir/$f $C/$f&lt;BR /&gt; fi&lt;BR /&gt;fi&lt;BR /&gt;done &lt;BR /&gt;</description>
      <pubDate>Fri, 11 Jul 2003 18:24:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021688#M909474</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2003-07-11T18:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021689#M909475</link>
      <description>my first script has a typo&lt;BR /&gt;&lt;BR /&gt;select i in $(find $fromDir -name $file) &lt;BR /&gt;do &lt;BR /&gt;case $i &lt;BR /&gt;${fromDir}*${file}) &lt;BR /&gt;tmpDir=${i#$fromDir/} &lt;BR /&gt;tmpDir="$toDir/$tmpDir" &lt;BR /&gt;break;; &lt;BR /&gt;&lt;BR /&gt;should be&lt;BR /&gt;&lt;BR /&gt;case $i in   #need that "in"&lt;BR /&gt;${fromDir}*${file}) &lt;BR /&gt;</description>
      <pubDate>Fri, 11 Jul 2003 18:31:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021689#M909475</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2003-07-11T18:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021690#M909476</link>
      <description>curt,&lt;BR /&gt;&lt;BR /&gt;quick response, they are kicking me out.&lt;BR /&gt;&lt;BR /&gt;"do you want to only ask for a new file name if the file already exists" yes&lt;BR /&gt;&lt;BR /&gt;would like a list to choose which files to copy first. with numbers for each filename perhaps, then choose 1,3 4-7 or quit choices.&lt;BR /&gt;&lt;BR /&gt;Then it would see if the file exists on /appc and allow for overwrite or rename choice?&lt;BR /&gt;&lt;BR /&gt;John&lt;BR /&gt;&lt;BR /&gt;Talk to you Monday.</description>
      <pubDate>Fri, 11 Jul 2003 18:33:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021690#M909476</guid>
      <dc:creator>John Stiles</dc:creator>
      <dc:date>2003-07-11T18:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021691#M909477</link>
      <description>just a couple of considerations&lt;BR /&gt;&lt;BR /&gt;*) notDone=/usr/bin/false&lt;BR /&gt;while $notDone&lt;BR /&gt;do&lt;BR /&gt;print "what do you want to rename the file, $f, as? " &lt;BR /&gt;read answer &lt;BR /&gt;#might want to do some testing for valid per naming standard &lt;BR /&gt;if [ "$answer = "" ] ;then #user just typed enter&lt;BR /&gt;print "you'll have to enter a file name"&lt;BR /&gt;else&lt;BR /&gt;if [ -f $C/$f ] ;then &lt;BR /&gt;print "$f already exists, you'll need to select a different name"&lt;BR /&gt;else&lt;BR /&gt;mv $engdir/$f $C/$answer&lt;BR /&gt;notDone=/usr/bin/false&lt;BR /&gt;fi&lt;BR /&gt;fi&lt;BR /&gt;done;;&lt;BR /&gt;esac &lt;BR /&gt;</description>
      <pubDate>Fri, 11 Jul 2003 18:41:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021691#M909477</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2003-07-11T18:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021692#M909478</link>
      <description>thanks for all the points.  here is a script that should come close to what your wanting to do</description>
      <pubDate>Mon, 14 Jul 2003 06:42:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021692#M909478</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2003-07-14T06:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021693#M909479</link>
      <description>Curt,&lt;BR /&gt;&lt;BR /&gt;I take it that parts of my script should be modified and left at the beginning?&lt;BR /&gt;&lt;BR /&gt;I ran your script and it listed all dirs/files in /appe/eng then gives me the folowing syntax error:&lt;BR /&gt;+ PS3=please enter a number -&amp;gt; &lt;BR /&gt;/sjs/cadf[19]: syntax error at line 23 : `${fromDir}*${file}' unexpected&lt;BR /&gt;&lt;BR /&gt;I tried adding my 2 find variables and got it to list the dir but still get the same syntax error. &lt;BR /&gt;&lt;BR /&gt;You're way over my head here. That's what makes this forum such an asset. I do O.K. with small scripts doing 1-2 things, but having a single script do it all is where I'm weak. I usally just end up writing several scritps that are run from a main script. Not really the way I want it, but it works most of the time. &lt;BR /&gt;In my next post I'll attach an example script that I wrote so you can see an example of what I mean.&lt;BR /&gt;&lt;BR /&gt;John&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jul 2003 10:55:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021693#M909479</guid>
      <dc:creator>John Stiles</dc:creator>
      <dc:date>2003-07-14T10:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021694#M909480</link>
      <description>Curt,&lt;BR /&gt;&lt;BR /&gt;attached single/multi script example mentioned above.&lt;BR /&gt;&lt;BR /&gt;John</description>
      <pubDate>Mon, 14 Jul 2003 10:59:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021694#M909480</guid>
      <dc:creator>John Stiles</dc:creator>
      <dc:date>2003-07-14T10:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021695#M909481</link>
      <description>Curt,&lt;BR /&gt;&lt;BR /&gt;BTW, points are the easy part, you earned them! You are doing the hard part.&lt;BR /&gt;&lt;BR /&gt;This is the best forum on the net. All of you are a big help.&lt;BR /&gt;&lt;BR /&gt;John</description>
      <pubDate>Mon, 14 Jul 2003 11:05:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021695#M909481</guid>
      <dc:creator>John Stiles</dc:creator>
      <dc:date>2003-07-14T11:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021696#M909482</link>
      <description>I take it that parts of my script should be modified and left at the beginning? &lt;BR /&gt;&lt;BR /&gt;No, the script I attached should be all you need.  The #!/usr/bin/ksh should start at column 1.  And, feel free to add as many comments as you need.  After all, your the one that needs to know how things are done.&lt;BR /&gt;&lt;BR /&gt;I ran your script and it listed all dirs/files in /appe/eng then gives me the folowing syntax error: &lt;BR /&gt;+ PS3=please enter a number -&amp;gt; &lt;BR /&gt;/sjs/cadf[19]: syntax error at line 23 : `${fromDir}*${file}' unexpected &lt;BR /&gt;&lt;BR /&gt;this is for the same reason I had mention previously, the "case" statement just after the PS3 assignment is missing it's "in".&lt;BR /&gt;&lt;BR /&gt;select i in $(find $fromDir -name $file) &lt;BR /&gt;do &lt;BR /&gt;case $i &lt;BR /&gt;${fromDir}*${file}) &lt;BR /&gt;&lt;BR /&gt;should be&lt;BR /&gt;&lt;BR /&gt;select i in $(find $fromDir -name $file) &lt;BR /&gt;do &lt;BR /&gt;case $i in ${fromDir}*${file}) &lt;BR /&gt;&lt;BR /&gt;But, with the script a provided none of that is necessary.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jul 2003 13:16:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021696#M909482</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2003-07-14T13:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021697#M909483</link>
      <description>You're way over my head here.&lt;BR /&gt;&lt;BR /&gt;ask as many questions as you'd like.  I'll, or others, will try to answer them as best we can.</description>
      <pubDate>Mon, 14 Jul 2003 13:20:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021697#M909483</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2003-07-14T13:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021698#M909484</link>
      <description>Curt,&lt;BR /&gt;&lt;BR /&gt;That works. I'll test it for different scenario's. Also in an attempt to learn from this experience, I'll try to make it do other things. ex. for the question, allow multiple choices 1-3,6,8-10 or all files.&lt;BR /&gt;&lt;BR /&gt;If I get stuck again, do I post it here, or post a new question? It may be toward the middle to latter part of this week before I get it done. They make me work here too? can you believe it?&lt;BR /&gt;&lt;BR /&gt;John</description>
      <pubDate>Mon, 14 Jul 2003 14:13:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021698#M909484</guid>
      <dc:creator>John Stiles</dc:creator>
      <dc:date>2003-07-14T14:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021699#M909485</link>
      <description>Curt,&lt;BR /&gt;&lt;BR /&gt;Let me be the first to congratulate you on your ne hat. &lt;BR /&gt;&lt;BR /&gt;Congratulations and great job!!!&lt;BR /&gt;&lt;BR /&gt;Keep up the good work.&lt;BR /&gt;&lt;BR /&gt;John</description>
      <pubDate>Mon, 14 Jul 2003 14:16:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021699#M909485</guid>
      <dc:creator>John Stiles</dc:creator>
      <dc:date>2003-07-14T14:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021700#M909486</link>
      <description>oops. spelling counts...&lt;BR /&gt;that would be "new hat" not "ne hat"&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jul 2003 14:20:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021700#M909486</guid>
      <dc:creator>John Stiles</dc:creator>
      <dc:date>2003-07-14T14:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: ksh help please</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021701#M909487</link>
      <description>If I get stuck again, do I post it here, or post a new question?&lt;BR /&gt;&lt;BR /&gt;once the question poser has assigned a value of 8-10 for one of his answers the thread gets a bunny icon attached to it.  Usually this means that the author has received a very good answer to his question.  &lt;BR /&gt;&lt;BR /&gt;And being the author already has an answer most forum members will discontinue following that thread.&lt;BR /&gt;&lt;BR /&gt;So, I'd post a new question.  That way more forum members will be likely to answer your question.  I'd also put a url to this thread in the new post.  That way someone can always go back to this thread as reference if they desire.</description>
      <pubDate>Mon, 14 Jul 2003 14:39:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-help-please/m-p/3021701#M909487</guid>
      <dc:creator>curt larson_1</dc:creator>
      <dc:date>2003-07-14T14:39:18Z</dc:date>
    </item>
  </channel>
</rss>

