<?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: syntax for using find command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504987#M217282</link>
    <description>i suggest you use Robert Jan's suggestion with a minor adjustment:&lt;BR /&gt;find /directory -type f -mtime +90 -exec ll {} \; &amp;gt;&amp;gt; /tmp/directory.log&lt;BR /&gt;note the {} &lt;BR /&gt;regards.</description>
    <pubDate>Tue, 15 Mar 2005 10:41:37 GMT</pubDate>
    <dc:creator>Henk Geurts</dc:creator>
    <dc:date>2005-03-15T10:41:37Z</dc:date>
    <item>
      <title>syntax for using find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504977#M217272</link>
      <description>hello&lt;BR /&gt;i am trying to use the find command to list all files in a large directory that are older then 90 days, and then dump the list to a file.  I seem to not be able to get the syntax correct.  Help would be appreciated.  HPUX11.i.  thanks&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Mar 2005 09:49:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504977#M217272</guid>
      <dc:creator>Mark Harshman_1</dc:creator>
      <dc:date>2005-03-15T09:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for using find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504978#M217273</link>
      <description># cd /dir&lt;BR /&gt;# find . -type f -mtime +90 -print &amp;gt; list_of_old_files&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Mar 2005 09:51:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504978#M217273</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2005-03-15T09:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for using find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504979#M217274</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;# find /directory -type f -mtime +90 -exec ll \; &amp;gt;&amp;gt; /tmp/directory.log&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Tue, 15 Mar 2005 09:52:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504979#M217274</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2005-03-15T09:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for using find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504980#M217275</link>
      <description>find &lt;YOUR_STARTDIR&gt; -type f -mtime +90 &amp;gt; /tmp/yt 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt;will make the list to /tmp/yt &lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;John K.&lt;/YOUR_STARTDIR&gt;</description>
      <pubDate>Tue, 15 Mar 2005 09:52:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504980#M217275</guid>
      <dc:creator>john korterman</dc:creator>
      <dc:date>2005-03-15T09:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for using find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504981#M217276</link>
      <description>cd /target_dir&lt;BR /&gt;find . -type f -mtime +90 &amp;gt; old_file_listing&lt;BR /&gt;or&lt;BR /&gt;find /target_dir -type f -mtime +90 &amp;gt; old_file_listing</description>
      <pubDate>Tue, 15 Mar 2005 09:55:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504981#M217276</guid>
      <dc:creator>TwoProc</dc:creator>
      <dc:date>2005-03-15T09:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for using find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504982#M217277</link>
      <description>thanks..im sure these will work..</description>
      <pubDate>Tue, 15 Mar 2005 09:56:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504982#M217277</guid>
      <dc:creator>Mark Harshman_1</dc:creator>
      <dc:date>2005-03-15T09:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for using find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504983#M217278</link>
      <description>ok, these work..but none give me the long list of files to the log file.  Any other ideas?&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Mar 2005 10:31:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504983#M217278</guid>
      <dc:creator>Mark Harshman_1</dc:creator>
      <dc:date>2005-03-15T10:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for using find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504984#M217279</link>
      <description>I would have expected Robert Jan's suggestion to provide a long listing. Have you tried replacing the ll with ls -l?&lt;BR /&gt;&lt;BR /&gt;Mark Syder (like the drink but spelt different)</description>
      <pubDate>Tue, 15 Mar 2005 10:33:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504984#M217279</guid>
      <dc:creator>MarkSyder</dc:creator>
      <dc:date>2005-03-15T10:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for using find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504985#M217280</link>
      <description>ahhhhhh stupid me, sorry I made a mistake.&lt;BR /&gt;&lt;BR /&gt;# find /directory -type f -mtime +90 -exec ll {} \; &amp;gt;&amp;gt; /tmp/directory.log&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Mar 2005 10:37:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504985#M217280</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2005-03-15T10:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for using find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504986#M217281</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;# cd /dir&lt;BR /&gt;# find . -type f -mtime +90 -exec ls -l {} \; &amp;gt; list_of_old_files</description>
      <pubDate>Tue, 15 Mar 2005 10:38:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504986#M217281</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2005-03-15T10:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for using find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504987#M217282</link>
      <description>i suggest you use Robert Jan's suggestion with a minor adjustment:&lt;BR /&gt;find /directory -type f -mtime +90 -exec ll {} \; &amp;gt;&amp;gt; /tmp/directory.log&lt;BR /&gt;note the {} &lt;BR /&gt;regards.</description>
      <pubDate>Tue, 15 Mar 2005 10:41:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504987#M217282</guid>
      <dc:creator>Henk Geurts</dc:creator>
      <dc:date>2005-03-15T10:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for using find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504988#M217283</link>
      <description>Thanks Robert...that did the trick.&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Mar 2005 11:10:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/syntax-for-using-find-command/m-p/3504988#M217283</guid>
      <dc:creator>Mark Harshman_1</dc:creator>
      <dc:date>2005-03-15T11:10:18Z</dc:date>
    </item>
  </channel>
</rss>

