<?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 Scripts help.......... in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610472#M36029</link>
    <description>Hai Robin,&lt;BR /&gt;&lt;BR /&gt;I mean if i execute the above script it has to delete only "DAT" files but it is deleting  "X_" files also...I dont want to delete the files starting with prefix "X_"&lt;BR /&gt;My requirement according to above script is I want to delete the files having the extention "DAT" only...&lt;BR /&gt;&lt;BR /&gt;These are the files which i am having.....&lt;BR /&gt;&lt;BR /&gt;Nov  6 09:06 X_file06.DAT&lt;BR /&gt;Nov  6 09:06 X_file06.DAT&lt;BR /&gt;Nov  7 09:05 X_file07.DAT&lt;BR /&gt;Nov  7 09:05 X_file07.DAT&lt;BR /&gt;Nov  8 09:04 X_file08.DAT&lt;BR /&gt;Nov  8 09:04 X_file08.DAT&lt;BR /&gt;Nov  9 09:03 X_file09.DAT&lt;BR /&gt;Nov  9 09:03 X_file09.DAT&lt;BR /&gt;Nov 10 09:02 X_file10.DAT&lt;BR /&gt;Nov 10 09:02 X_file10.DAT&lt;BR /&gt;Nov 11 09:01 X_file11.DAT&lt;BR /&gt;Nov 11 09:01 X_file11.DAT&lt;BR /&gt;Nov  6 09:00 file06.DAT&lt;BR /&gt;Nov  7 09:00 file07.DAT&lt;BR /&gt;Nov  8 09:00 file08.DAT&lt;BR /&gt;Nov  9 09:00 file09.DAT&lt;BR /&gt;Nov 10 09:00 file10.DAT&lt;BR /&gt;&lt;BR /&gt;I mean the script has to ignore the files starting with "X_" and has to delete only extention "DAT" files..&lt;BR /&gt;&lt;BR /&gt;Please help me...&lt;BR /&gt;&lt;BR /&gt;Ra</description>
    <pubDate>Mon, 12 Nov 2001 09:33:15 GMT</pubDate>
    <dc:creator>Rajkumar_3</dc:creator>
    <dc:date>2001-11-12T09:33:15Z</dc:date>
    <item>
      <title>Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610464#M36021</link>
      <description>Hai all &lt;BR /&gt;&lt;BR /&gt;I need a help to develop a shell script as per the Document Attached..&lt;BR /&gt;&lt;BR /&gt;Thanks for the Advance in Help..&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Raj..</description>
      <pubDate>Fri, 09 Nov 2001 02:10:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610464#M36021</guid>
      <dc:creator>Rajkumar_3</dc:creator>
      <dc:date>2001-11-09T02:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610465#M36022</link>
      <description>Hai ,&lt;BR /&gt;&lt;BR /&gt;Any SysAdmins, please respond &lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;Raj</description>
      <pubDate>Fri, 09 Nov 2001 04:55:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610465#M36022</guid>
      <dc:creator>Rajkumar_3</dc:creator>
      <dc:date>2001-11-09T04:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610466#M36023</link>
      <description>Hi Raj,&lt;BR /&gt;&lt;BR /&gt;How about:&lt;BR /&gt;&lt;BR /&gt;=====================================&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;&lt;BR /&gt;FILE1=/home/test/bacuss/bac1.log&lt;BR /&gt;FILE2=/home/test/bacuss/deletion.props&lt;BR /&gt;&lt;BR /&gt;grep FILE_NAME $FILE2  | cut -d= -f2 | read FN&lt;BR /&gt;grep RETAIN_PEND $FILE2 | cut -d= -f2 | read RP&lt;BR /&gt;grep BACK_FILE_EXT $FILE2 | cut -d= -f2 | read BFE&lt;BR /&gt;grep RETAIN_SEND $FILE2 | cut -d= -f2 | read RS&lt;BR /&gt;&lt;BR /&gt;cat $FILE1 | while read DIR ; do&lt;BR /&gt; find $DIR -name "*$FN" -mtime +$RP | xargs rm&lt;BR /&gt; find $DIR -name "*$BFE" -mtime +$RS | xargs rm&lt;BR /&gt;done&lt;BR /&gt;======================================&lt;BR /&gt;&lt;BR /&gt;Rgds, Robin</description>
      <pubDate>Fri, 09 Nov 2001 11:59:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610466#M36023</guid>
      <dc:creator>Robin Wakefield</dc:creator>
      <dc:date>2001-11-09T11:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610467#M36024</link>
      <description>Hai Robin,&lt;BR /&gt;&lt;BR /&gt;When i run the script which you have given to me ........ITS HANGING.....What could be the reason???&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards&lt;BR /&gt;Raj</description>
      <pubDate>Mon, 12 Nov 2001 04:01:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610467#M36024</guid>
      <dc:creator>Rajkumar_3</dc:creator>
      <dc:date>2001-11-12T04:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610468#M36025</link>
      <description>Hai Robin,&lt;BR /&gt;&lt;BR /&gt;Its working now...&lt;BR /&gt;Is it possible to write the status to "SYSLOG" file using logger command??? I mean whether it is success or unsuccessfulll ???&lt;BR /&gt;&lt;BR /&gt;Raj</description>
      <pubDate>Mon, 12 Nov 2001 04:15:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610468#M36025</guid>
      <dc:creator>Rajkumar_3</dc:creator>
      <dc:date>2001-11-12T04:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610469#M36026</link>
      <description>Well, you could write a small executable in C, which would do an openlog(), syslog() and closelog().&lt;BR /&gt;And then call this exe from your script, passing to it the message to be logged.&lt;BR /&gt;&lt;BR /&gt;HTH</description>
      <pubDate>Mon, 12 Nov 2001 07:26:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610469#M36026</guid>
      <dc:creator>Deepak Extross</dc:creator>
      <dc:date>2001-11-12T07:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610470#M36027</link>
      <description>Hai Robin,&lt;BR /&gt;&lt;BR /&gt;One more clarification reagarding script....&lt;BR /&gt;&lt;BR /&gt;While executing the below script it has to delete only "DAT" files only.&lt;BR /&gt;It is deleting the "DAT" as well as "X_" files..Is is possible to read only specific whose files starting with "X_" ????? &lt;BR /&gt;==============================&lt;BR /&gt;#!/bin/ksh &lt;BR /&gt;FILE1=/home/test/bacuss/bac1.log &lt;BR /&gt;FILE2=/home/test/bacuss/deletion.props &lt;BR /&gt;grep FILE_NAME $FILE2 | cut -d= -f2 | read FN &lt;BR /&gt;grep RETAIN_PEND $FILE2 | cut -d= -f2 | read RP &lt;BR /&gt;cat $FILE1 | while read DIR ; do &lt;BR /&gt;find $DIR -name "*$FN" -mtime +$RP | xargs rm &lt;BR /&gt;done &lt;BR /&gt;==============================&lt;BR /&gt;&lt;BR /&gt;Waiting for your reply..&lt;BR /&gt;&lt;BR /&gt;R</description>
      <pubDate>Mon, 12 Nov 2001 08:58:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610470#M36027</guid>
      <dc:creator>Rajkumar_3</dc:creator>
      <dc:date>2001-11-12T08:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610471#M36028</link>
      <description>Raj,&lt;BR /&gt;&lt;BR /&gt;If you change:&lt;BR /&gt;&lt;BR /&gt;find $DIR -name "*$FN" -mtime +$RP | xargs rm&lt;BR /&gt;&lt;BR /&gt;to&lt;BR /&gt;&lt;BR /&gt;find $DIR -name "X_*$FN" -mtime +$RP | xargs rm&lt;BR /&gt;&lt;BR /&gt;is that what you're after?&lt;BR /&gt;&lt;BR /&gt;Rgds, Robin.</description>
      <pubDate>Mon, 12 Nov 2001 09:09:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610471#M36028</guid>
      <dc:creator>Robin Wakefield</dc:creator>
      <dc:date>2001-11-12T09:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610472#M36029</link>
      <description>Hai Robin,&lt;BR /&gt;&lt;BR /&gt;I mean if i execute the above script it has to delete only "DAT" files but it is deleting  "X_" files also...I dont want to delete the files starting with prefix "X_"&lt;BR /&gt;My requirement according to above script is I want to delete the files having the extention "DAT" only...&lt;BR /&gt;&lt;BR /&gt;These are the files which i am having.....&lt;BR /&gt;&lt;BR /&gt;Nov  6 09:06 X_file06.DAT&lt;BR /&gt;Nov  6 09:06 X_file06.DAT&lt;BR /&gt;Nov  7 09:05 X_file07.DAT&lt;BR /&gt;Nov  7 09:05 X_file07.DAT&lt;BR /&gt;Nov  8 09:04 X_file08.DAT&lt;BR /&gt;Nov  8 09:04 X_file08.DAT&lt;BR /&gt;Nov  9 09:03 X_file09.DAT&lt;BR /&gt;Nov  9 09:03 X_file09.DAT&lt;BR /&gt;Nov 10 09:02 X_file10.DAT&lt;BR /&gt;Nov 10 09:02 X_file10.DAT&lt;BR /&gt;Nov 11 09:01 X_file11.DAT&lt;BR /&gt;Nov 11 09:01 X_file11.DAT&lt;BR /&gt;Nov  6 09:00 file06.DAT&lt;BR /&gt;Nov  7 09:00 file07.DAT&lt;BR /&gt;Nov  8 09:00 file08.DAT&lt;BR /&gt;Nov  9 09:00 file09.DAT&lt;BR /&gt;Nov 10 09:00 file10.DAT&lt;BR /&gt;&lt;BR /&gt;I mean the script has to ignore the files starting with "X_" and has to delete only extention "DAT" files..&lt;BR /&gt;&lt;BR /&gt;Please help me...&lt;BR /&gt;&lt;BR /&gt;Ra</description>
      <pubDate>Mon, 12 Nov 2001 09:33:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610472#M36029</guid>
      <dc:creator>Rajkumar_3</dc:creator>
      <dc:date>2001-11-12T09:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610473#M36030</link>
      <description>Hai Robin,&lt;BR /&gt;&lt;BR /&gt;Once again &lt;BR /&gt;&lt;BR /&gt;While deleting the files having the extension "DAT" it has to ignore the files starting with "X_"&lt;BR /&gt;&lt;BR /&gt;In the script There must be some condition to eliminate the prefix "X_" files while deleting the files extension "DAT"&lt;BR /&gt;&lt;BR /&gt;And "X_" &amp;amp; "DAT" should be read only from the parameter file "deletion.props".It should not be hardcoded in the script.....&lt;BR /&gt;&lt;BR /&gt;Please kindly cooperate to solve the problem...&lt;BR /&gt;&lt;BR /&gt;Raj</description>
      <pubDate>Mon, 12 Nov 2001 09:47:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610473#M36030</guid>
      <dc:creator>Rajkumar_3</dc:creator>
      <dc:date>2001-11-12T09:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610474#M36031</link>
      <description>Hi Raj,&lt;BR /&gt;&lt;BR /&gt;A couple of ways:&lt;BR /&gt;&lt;BR /&gt;find $DIR -name "*$FN" -mtime +$RP | grep -v X_ | xargs rm &lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;find $DIR \( -name "*$FN" -a ! -name "X_*" \) -mtime +$RP | xargs rm&lt;BR /&gt;&lt;BR /&gt;Rgds, Robin</description>
      <pubDate>Mon, 12 Nov 2001 09:53:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610474#M36031</guid>
      <dc:creator>Robin Wakefield</dc:creator>
      <dc:date>2001-11-12T09:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610475#M36032</link>
      <description>hai Robin,&lt;BR /&gt;&lt;BR /&gt;I used what ever you have given ,still its showing all the "DAT" files along with "X_" files..&lt;BR /&gt;&lt;BR /&gt;Raj</description>
      <pubDate>Mon, 12 Nov 2001 10:04:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610475#M36032</guid>
      <dc:creator>Rajkumar_3</dc:creator>
      <dc:date>2001-11-12T10:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610476#M36033</link>
      <description>Hi Raj,&lt;BR /&gt;&lt;BR /&gt;You may need to put "-print" at the end of the find command.&lt;BR /&gt;&lt;BR /&gt;Can you post the latest version of all your files please?&lt;BR /&gt;&lt;BR /&gt;Rgds, Robin.</description>
      <pubDate>Mon, 12 Nov 2001 10:12:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610476#M36033</guid>
      <dc:creator>Robin Wakefield</dc:creator>
      <dc:date>2001-11-12T10:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610477#M36034</link>
      <description>Hai Robin,&lt;BR /&gt;&lt;BR /&gt;I have attached all the script s..Please review...&lt;BR /&gt;&lt;BR /&gt;Thanking you..&lt;BR /&gt;&lt;BR /&gt;Raj</description>
      <pubDate>Mon, 12 Nov 2001 10:26:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610477#M36034</guid>
      <dc:creator>Rajkumar_3</dc:creator>
      <dc:date>2001-11-12T10:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610478#M36035</link>
      <description>Hi Raj,&lt;BR /&gt;&lt;BR /&gt;I'd remove the "#!/bin/sh" from the top of bac1.log.  This is causing the find to "fail" and the xargs to list all the files in the current directory (is this what you're seeing?).&lt;BR /&gt;&lt;BR /&gt;Apart from that, I can see no problems.&lt;BR /&gt;&lt;BR /&gt;Rgds, Robin.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Nov 2001 10:46:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610478#M36035</guid>
      <dc:creator>Robin Wakefield</dc:creator>
      <dc:date>2001-11-12T10:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610479#M36036</link>
      <description>Hai robin,,&lt;BR /&gt;&lt;BR /&gt;Fanastic,,Its working fine..&lt;BR /&gt;&lt;BR /&gt;I have attached the scipts which i have executed independently..&lt;BR /&gt;&lt;BR /&gt;Waiting for your responce..&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Raj</description>
      <pubDate>Mon, 12 Nov 2001 11:25:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610479#M36036</guid>
      <dc:creator>Rajkumar_3</dc:creator>
      <dc:date>2001-11-12T11:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610480#M36037</link>
      <description>Hi Raj,&lt;BR /&gt;&lt;BR /&gt;Try this:&lt;BR /&gt;&lt;BR /&gt;FILE1=/home/rajkumar/in_dir/bac1.log&lt;BR /&gt;FILE2=/home/rajkumar/in_dir/deletion.props&lt;BR /&gt;grep FILE_NAME $FILE2 | cut -d= -f2 | read FN&lt;BR /&gt;grep RETAIN_PEND $FILE2 | cut -d= -f2 | read RP&lt;BR /&gt;grep BACK_FILE_EXT $FILE2 | cut -d= -f2 | read BFE&lt;BR /&gt;grep RETAIN_SEND $FILE2 | cut -d= -f2 | read RS&lt;BR /&gt;&lt;BR /&gt;COUNT=0&lt;BR /&gt;&lt;BR /&gt;cat $FILE1 | while read DIR ; do&lt;BR /&gt; if [ ! -d "$DIR" ] ; then &lt;BR /&gt;  logger "$0 : $DIR not found" &lt;BR /&gt;  continue&lt;BR /&gt; fi &lt;BR /&gt; find $DIR -name "*$FN" -mtime +$RP | grep -v $BFE | while read FILE ; do&lt;BR /&gt;  rm $FILE &amp;amp;&amp;amp; logger "$0 : for directory $DIR, $FILE deleted" &lt;BR /&gt;  COUNT=$(expr $COUNT + 1) &lt;BR /&gt; done &lt;BR /&gt;&lt;BR /&gt; find $DIR -name "$BFE*" -mtime +$RS | while read FILE ;do&lt;BR /&gt;  rm $FILE &amp;amp;&amp;amp; logger "$0 : for directory $DIR, $FILE deleted" &lt;BR /&gt;  COUNT=$(expr $COUNT + 1) &lt;BR /&gt; done &lt;BR /&gt;&lt;BR /&gt; if [ "$COUNT" -gt 0 ] ; then &lt;BR /&gt;  logger "$0 : for directory $DIR, $COUNT files removed" &lt;BR /&gt; else &lt;BR /&gt;  logger "$0 : for directory $DIR, no matching files found" &lt;BR /&gt; fi &lt;BR /&gt;done &lt;BR /&gt;exit 0&lt;BR /&gt;&lt;BR /&gt;Rgds, Robin</description>
      <pubDate>Mon, 12 Nov 2001 11:41:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610480#M36037</guid>
      <dc:creator>Robin Wakefield</dc:creator>
      <dc:date>2001-11-12T11:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610481#M36038</link>
      <description>Hai Robin,&lt;BR /&gt;&lt;BR /&gt;The message status of the deletion files only i am able to see..If there are no files there is no message status in the SYSLOG...&lt;BR /&gt;i mean files not found like that....&lt;BR /&gt;&lt;BR /&gt;Can you please review???&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Raj</description>
      <pubDate>Mon, 12 Nov 2001 12:17:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610481#M36038</guid>
      <dc:creator>Rajkumar_3</dc:creator>
      <dc:date>2001-11-12T12:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610482#M36039</link>
      <description>Hai robin ,&lt;BR /&gt;&lt;BR /&gt;I have attached the STATUS3.log file ..&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Raj</description>
      <pubDate>Mon, 12 Nov 2001 12:23:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610482#M36039</guid>
      <dc:creator>Rajkumar_3</dc:creator>
      <dc:date>2001-11-12T12:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Scripts help..........</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610483#M36040</link>
      <description>Hi Raj,&lt;BR /&gt;&lt;BR /&gt;I'm not sure I know what you mean - the find command will only find files that exist, so you shouldn't see "file not found".&lt;BR /&gt;&lt;BR /&gt;You may want to move "COUNT=0" to after the first "while ...", so that it gets reset for each directory.&lt;BR /&gt;&lt;BR /&gt;Please explain further if this is not correct.&lt;BR /&gt;&lt;BR /&gt;Rgds, Robin.</description>
      <pubDate>Mon, 12 Nov 2001 12:39:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-scripts-help/m-p/2610483#M36040</guid>
      <dc:creator>Robin Wakefield</dc:creator>
      <dc:date>2001-11-12T12:39:15Z</dc:date>
    </item>
  </channel>
</rss>

