<?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: Powerfull Find in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130943#M688994</link>
    <description>&lt;!--!*#--&gt;find(1) works two ways depending if UNIX95 is exported.  The find(1) describes UNIX95, which isn't the default.&lt;BR /&gt;time is now 27:1800&lt;BR /&gt;25:0000  2*24:1800 26:0000 1*24:1800 27:0000 0*24:1800&lt;BR /&gt;file       X        file1     X        file2   NOW&lt;BR /&gt;Default: takes time / day and truncates&lt;BR /&gt; 2         X          1       X         0&lt;BR /&gt;+0         X         +0       X         X&lt;BR /&gt;+1         X          X       X        -1&lt;BR /&gt;&lt;BR /&gt;UNIX95: takes time in seconds and compares N thru N-1 as =, - as &amp;lt; N-1, + as &amp;gt; N&lt;BR /&gt;file       X        file1     X        file2   NOW&lt;BR /&gt; 3         X          2       X         1&lt;BR /&gt;+0         X         +0       X        +0&lt;BR /&gt;+1         X         +1       X         X&lt;BR /&gt;+2         X          X       X        -2</description>
    <pubDate>Tue, 28 Oct 2008 01:26:55 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2008-10-28T01:26:55Z</dc:date>
    <item>
      <title>Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130923#M688974</link>
      <description>Dears, &lt;BR /&gt;&lt;BR /&gt;Good day, &lt;BR /&gt;&lt;BR /&gt;I have an issue with find command I would like to find files older than 2 days and move them to specific location. The issue is I want to build the exact same tree in the destination directory. &lt;BR /&gt;&lt;BR /&gt;For example, I want to search /var/LOGS and move anything older than two days to /backup/var/LOGS. If there was a sub directories in the source I want to create it in the destination. &lt;BR /&gt;&lt;BR /&gt;Regards,</description>
      <pubDate>Sun, 21 Sep 2008 11:36:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130923#M688974</guid>
      <dc:creator>AZayed</dc:creator>
      <dc:date>2008-09-21T11:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130924#M688975</link>
      <description>Salam Ahmed&lt;BR /&gt;&lt;BR /&gt;try this command&lt;BR /&gt;&lt;BR /&gt;#find /var/LOGS -type f -mtime +7 -exec mv -r {} /backup/var/LOGS \;</description>
      <pubDate>Sun, 21 Sep 2008 11:52:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130924#M688975</guid>
      <dc:creator>Jeeshan</dc:creator>
      <dc:date>2008-09-21T11:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130925#M688976</link>
      <description>mistake&lt;BR /&gt;&lt;BR /&gt;#find /var/LOGS -type f -mtime +2 -exec mv -r {} /backup/var/LOGS \;</description>
      <pubDate>Sun, 21 Sep 2008 11:54:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130925#M688976</guid>
      <dc:creator>Jeeshan</dc:creator>
      <dc:date>2008-09-21T11:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130926#M688977</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;# cd /var&lt;BR /&gt;# find ./LOGS -depth -mtime +2 -print | cpio -pudlvm /backup/var&lt;BR /&gt;&lt;BR /&gt;...will *copy* and replicate the directory/file structure in the destination directory.  You will then need to remove what you don't want from the source tree in a separate pass.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Sun, 21 Sep 2008 12:21:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130926#M688977</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-09-21T12:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130927#M688978</link>
      <description>&lt;!--!*#--&gt;This solution does it in one pass but you'll need to write a customized script:&lt;BR /&gt;&lt;BR /&gt;Starting from Ahsan's basic find:&lt;BR /&gt;find /var/LOGS -type f -mtime +2 -exec fancy_script {} +&lt;BR /&gt;&lt;BR /&gt;Then create fancy_script:&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;# Move files to /backup, keeping directory paths&lt;BR /&gt;for file in $*; do&lt;BR /&gt;   mkdir -p /backup/$(dirname $file)&lt;BR /&gt;   mv $file /backup/$file&lt;BR /&gt;done</description>
      <pubDate>Sun, 21 Sep 2008 18:53:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130927#M688978</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-09-21T18:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130928#M688979</link>
      <description>Thanks for reply, &lt;BR /&gt;&lt;BR /&gt;Dear ahsan, mv doesn't have -r option it's only in cp. &lt;BR /&gt;&lt;BR /&gt;Dears Dennis Handly and James R. Ferguson, I have this idea already, creating a script and calling it from find command. the script will use cp -r -p $1 $2 to create the specific tree. but I want to use mv command. This solution is very good but I prefer mv. &lt;BR /&gt;&lt;BR /&gt;FANCY SCRIPT : &lt;BR /&gt;&lt;BR /&gt;cp -r -p $1 $2 &lt;BR /&gt;rm $1 &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;FIND COMMAND : &lt;BR /&gt;&lt;BR /&gt;find /var/LOGS -type f -mtime +2 -exec FANCY_SCRIPT {} /backup/var/LOGS-DATE \; &lt;BR /&gt;&lt;BR /&gt;Any suggestion. &lt;BR /&gt;&lt;BR /&gt;Regards,</description>
      <pubDate>Mon, 22 Sep 2008 06:03:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130928#M688979</guid>
      <dc:creator>AZayed</dc:creator>
      <dc:date>2008-09-22T06:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130929#M688980</link>
      <description>Thought I'd throw my hat in the ring with another idea.&lt;BR /&gt;&lt;BR /&gt;Step 1.  Copy the entire directory structure to the new location.  Including the files you don't want. &lt;BR /&gt; "cp -r" or "cp -p -r" to preserve permisssions&lt;BR /&gt;&lt;BR /&gt;Step 2.  Nuke the files from the new structure which you don't want.&lt;BR /&gt;&lt;BR /&gt;I'd test this out first by replacing rm with ls -l just to make certain....I don't have a system to test this on today and this is from memory.&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;Find files in current directory only older than June 3rd 2008&lt;BR /&gt;&lt;BR /&gt;1.  Create reference file&lt;BR /&gt;touch -t 200806030000 /tmp/june3.ref&lt;BR /&gt;  Format of the numeric is YYYYMMDDHHMM&lt;BR /&gt;   - use some logic in the script to calculate proper value to represent 2 days agos.  I like this because you can control it down to the minute.&lt;BR /&gt;&lt;BR /&gt;2 Run the command&lt;BR /&gt;find ./loc/A/* ! -type d ! -newer /tmp/june3.ref -exec rm {} \;&lt;BR /&gt;&lt;BR /&gt;If you like it then stick this in a script to automate.&lt;BR /&gt;&lt;BR /&gt;I'll try to find my script which has all the little things like calculating the date etc for the touch command.  But it'll be a few days.&lt;BR /&gt;&lt;BR /&gt;Cheers</description>
      <pubDate>Mon, 22 Sep 2008 06:32:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130929#M688980</guid>
      <dc:creator>OFC_EDM</dc:creator>
      <dc:date>2008-09-22T06:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130930#M688981</link>
      <description>I'll add one more option.&lt;BR /&gt;&lt;BR /&gt;The previous example I put in goes into sub-directories.&lt;BR /&gt;&lt;BR /&gt;However if at some point you only want to process the current directory stick in the -prune argument&lt;BR /&gt;&lt;BR /&gt;find ./loc/A/* -prune ! -type d ! -newer /tmp/june3.ref -exec rm {} \;&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Mon, 22 Sep 2008 06:47:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130930#M688981</guid>
      <dc:creator>OFC_EDM</dc:creator>
      <dc:date>2008-09-22T06:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130931#M688982</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;A word of caution.&lt;BR /&gt;&lt;BR /&gt;All it takes is about 4 finds starting out at root to totally bring even a powerful system to its knees.&lt;BR /&gt;&lt;BR /&gt;Use carefully, preferably one at a time.&lt;BR /&gt;&lt;BR /&gt;Very interesting thread.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 22 Sep 2008 07:14:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130931#M688982</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2008-09-22T07:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130932#M688983</link>
      <description>&lt;!--!*#--&gt;&amp;gt;I have this idea already, creating a script and calling it from find command.  The script will use cp -r -p $1 $2 to create the specific tree. but I want to use mv command.&lt;BR /&gt;&lt;BR /&gt;My script already does mv(1).  What's wrong with it?  It will only create the needed parts of the tree.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;find /var/LOGS -type f -mtime +2 -exec FANCY_SCRIPT {} /backup/var/LOGS-DATE \;&lt;BR /&gt;&lt;BR /&gt;If you are changing the path in your target, then you'll need to fiddle with my script a little:&lt;BR /&gt;find /var/LOGS -type f -mtime +2 -exec FANCY_SCRIPT /backup/var/LOGS-DATE {} +&lt;BR /&gt;&lt;BR /&gt;FANCY_SCRIPT:&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;TARGET=$1&lt;BR /&gt;shift&lt;BR /&gt;for file in $*; do&lt;BR /&gt;   mkdir -p $TARGET/$(dirname $file)&lt;BR /&gt;   mv $file $TARGET/$file&lt;BR /&gt;done</description>
      <pubDate>Mon, 22 Sep 2008 08:19:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130932#M688983</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-09-22T08:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130933#M688984</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Dears Dennis Handly and James R. Ferguson, I have this idea already, creating a script and calling it from find command. &lt;BR /&gt;&lt;BR /&gt;Well, that's exactly what Dennis suggested originally to you!  I presented an alternative, less direct answer to your original query (using 'find' and a pipe to 'cpio').  I think you have everything you need to make your decision.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 22 Sep 2008 10:41:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130933#M688984</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-09-22T10:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130934#M688985</link>
      <description>Hi all, and thanks for your all ideas, &lt;BR /&gt;&lt;BR /&gt;Dear Kevin, I would like to ask you about the "!" mark. if you put it before -newer option is it mean find older files not newer onec ? &lt;BR /&gt;&lt;BR /&gt;I think I can solve this by moving the all directory to temporary directory and then find all the files newer than certain date as Kevin suggest and the returen those back with there directories to source directory. doing this I can save a lot of I/O because I'm dealing with more than 2,500,000 files. &lt;BR /&gt;&lt;BR /&gt;----------------- &lt;BR /&gt;&lt;BR /&gt;Again Kevin, thank for -prune option, I will write tomorowo script that have to go to every directory and count the number of files. So, I think this can help me with find. &lt;BR /&gt;&lt;BR /&gt;-----------------&lt;BR /&gt;&lt;BR /&gt;Dear JRF, I will read more about cpio, and feedback soon. &lt;BR /&gt;&lt;BR /&gt;Thanks all.</description>
      <pubDate>Mon, 22 Sep 2008 17:47:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130934#M688985</guid>
      <dc:creator>AZayed</dc:creator>
      <dc:date>2008-09-22T17:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130935#M688986</link>
      <description>&amp;gt;ask you about the "!" mark. if you put it before -newer option is it mean find older files not newer onec?&lt;BR /&gt;&lt;BR /&gt;The opposite of newer is "NOT newer".  Which is older or the same time.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;I think I can solve this by moving the all directory to temporary directory&lt;BR /&gt;&lt;BR /&gt;What's wrong with my "mv" solution?  (You can still use -newer if you want.)</description>
      <pubDate>Mon, 22 Sep 2008 17:54:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130935#M688986</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-09-22T17:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130936#M688987</link>
      <description>Hi folks, &lt;BR /&gt;&lt;BR /&gt;I would like to ask about -mtime option. &lt;BR /&gt;&lt;BR /&gt;In case you need to take all the files that were modified more than to days you need to use "-mtime +2". But this actually not finding all the files. Is this happened with you guys? &lt;BR /&gt;&lt;BR /&gt;I have to put another find with -mtime 2 option to achieve my goal. &lt;BR /&gt;&lt;BR /&gt;Any ideas ?</description>
      <pubDate>Mon, 27 Oct 2008 05:31:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130936#M688987</guid>
      <dc:creator>AZayed</dc:creator>
      <dc:date>2008-10-27T05:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130937#M688988</link>
      <description>&amp;gt;I have to put another find with -mtime 2 option to achieve my goal.&lt;BR /&gt;&lt;BR /&gt;What's your goal?  -mtime +2 should be all files modified more than 2*24 hours ago.&lt;BR /&gt;Have you read find(1)?&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-60130/find.1.html" target="_blank"&gt;http://docs.hp.com/en/B2355-60130/find.1.html&lt;/A&gt;</description>
      <pubDate>Mon, 27 Oct 2008 06:05:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130937#M688988</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-10-27T06:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130938#M688989</link>
      <description>Hi Dennis, &lt;BR /&gt;&lt;BR /&gt;I want to know the difference between -mtime 1 &amp;amp; -mtime +1. In Sun +1 mean find all files that modified time is more than 24 hour. &lt;BR /&gt;&lt;BR /&gt;Look at this: &lt;BR /&gt;&lt;BR /&gt;touch -t 0810250000 file&lt;BR /&gt;touch -t 0810260000 file1&lt;BR /&gt;touch -t 0810270000 file2&lt;BR /&gt;touch -mt 0810270000 file3&lt;BR /&gt;touch -mt 0810260000 file4&lt;BR /&gt;&lt;BR /&gt;#ls : &lt;BR /&gt;&lt;BR /&gt;Oct 25 00:00 file&lt;BR /&gt;Oct 26 00:00 file1&lt;BR /&gt;Oct 26 00:00 file4&lt;BR /&gt;Oct 27 00:00 file2&lt;BR /&gt;Oct 27 00:00 file3&lt;BR /&gt;&lt;BR /&gt;# find . -mtime +1&lt;BR /&gt;./file&lt;BR /&gt;# find . -mtime 1&lt;BR /&gt;./file1&lt;BR /&gt;./file4&lt;BR /&gt;&lt;BR /&gt;---- &lt;BR /&gt;&lt;BR /&gt;I think "find . -mtime +1" suppose to display "find . -mtime 1" result. &lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Mon, 27 Oct 2008 08:40:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130938#M688989</guid>
      <dc:creator>AZayed</dc:creator>
      <dc:date>2008-10-27T08:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130939#M688990</link>
      <description>Hi Ahmed,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;+n means more than n, -n means less than n, and n means exactly n.&lt;BR /&gt;&lt;BR /&gt;here it is n * 24 hours.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Aneesh</description>
      <pubDate>Mon, 27 Oct 2008 08:54:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130939#M688990</guid>
      <dc:creator>Aneesh Mohan</dc:creator>
      <dc:date>2008-10-27T08:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130940#M688991</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;So why the first command didn't find ./file1 , ./file4 files ? &lt;BR /&gt;&lt;BR /&gt;Regards, &lt;BR /&gt;</description>
      <pubDate>Mon, 27 Oct 2008 09:28:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130940#M688991</guid>
      <dc:creator>AZayed</dc:creator>
      <dc:date>2008-10-27T09:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130941#M688992</link>
      <description>Hi Ahmad,&lt;BR /&gt;&lt;BR /&gt;Try #find . -mtime +0 you will get it .&lt;BR /&gt;&lt;BR /&gt;fyi:-&lt;BR /&gt;True if the file modification time subtracted&lt;BR /&gt;from the initialization time is n-1 to n&lt;BR /&gt;multiples of 24 h.  The initialization time&lt;BR /&gt;shall be a time between the invocation of the&lt;BR /&gt;find utility and the first access by that&lt;BR /&gt;invocation of the find utility to any file&lt;BR /&gt;specified in its path operands.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Aneesh&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Oct 2008 10:25:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130941#M688992</guid>
      <dc:creator>Aneesh Mohan</dc:creator>
      <dc:date>2008-10-27T10:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Powerfull Find</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130942#M688993</link>
      <description>&amp;gt;So why the first command didn't find ./file1, ./file4 files?&lt;BR /&gt;&lt;BR /&gt;How can we tell if you don't tell us what time it is?&lt;BR /&gt;From find(1) there is a 24 hour fuzziness in -mtime n, perhaps there is for +n?</description>
      <pubDate>Mon, 27 Oct 2008 11:56:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/powerfull-find/m-p/5130942#M688993</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-10-27T11:56:47Z</dc:date>
    </item>
  </channel>
</rss>

