<?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: find linux versus HP in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/find-linux-versus-hp/m-p/4867432#M860664</link>
    <description>I want a list in this format:&lt;BR /&gt;yyyymmdd HH:MM:SS absolute_path/file_name&lt;BR /&gt;es:&lt;BR /&gt;20041019 07:13:24 /opt/antcvs/prod/log/exec/OraBE/WEBLOGIC_DBA/TEST_IB_20041014_1000.log&lt;BR /&gt;Thanks&lt;BR /&gt;Facchini Gabriele</description>
    <pubDate>Tue, 26 Oct 2004 11:01:48 GMT</pubDate>
    <dc:creator>Gabriele FACCHINI</dc:creator>
    <dc:date>2004-10-26T11:01:48Z</dc:date>
    <item>
      <title>find linux versus HP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-linux-versus-hp/m-p/4867430#M860662</link>
      <description>Hi guys in Linux I use this command:&lt;BR /&gt;find /opt/antcvs/prod/log/exec/ -type f -name "*.log" -mtime -10 -printf %AY%Am%Ad\\040%AT\\040 print|sort&lt;BR /&gt;to obtain the follow output:&lt;BR /&gt;20041019 07:06:15 /opt/antcvs/prod/log/exec/OraBE/WEBLOGIC_DBA/CACE_DBA_20041006.log&lt;BR /&gt;20041019 07:07:16 /opt/antcvs/prod/log/exec/OraBE/WEBLOGIC_DBA/TEST_HR_PA_EXT_INT_20040922_1600.log&lt;BR /&gt;20041019 07:07:32 /opt/antcvs/prod/log/exec/OraBE/WEBLOGIC_DBA/TEST_HR_PA_EXT_INT_20041006_1300.log&lt;BR /&gt;20041019 07:13:24 /opt/antcvs/prod/log/exec/OraBE/WEBLOGIC_DBA/TEST_IB_20041014_1000.log&lt;BR /&gt;&lt;BR /&gt;How commands can I use in HP-UX to obtain a list of file in this format?&lt;BR /&gt;Thanks a lot.&lt;BR /&gt;Facchini Gabriele</description>
      <pubDate>Tue, 26 Oct 2004 10:12:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-linux-versus-hp/m-p/4867430#M860662</guid>
      <dc:creator>Gabriele FACCHINI</dc:creator>
      <dc:date>2004-10-26T10:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: find linux versus HP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-linux-versus-hp/m-p/4867431#M860663</link>
      <description>The closest you'll be able to get is:&lt;BR /&gt;&lt;BR /&gt;find /opt/antcvs/prod/log/exec/ -type f -name "*.log" -mtime -10 -exec ll {} \;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 26 Oct 2004 10:18:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-linux-versus-hp/m-p/4867431#M860663</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2004-10-26T10:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: find linux versus HP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-linux-versus-hp/m-p/4867432#M860664</link>
      <description>I want a list in this format:&lt;BR /&gt;yyyymmdd HH:MM:SS absolute_path/file_name&lt;BR /&gt;es:&lt;BR /&gt;20041019 07:13:24 /opt/antcvs/prod/log/exec/OraBE/WEBLOGIC_DBA/TEST_IB_20041014_1000.log&lt;BR /&gt;Thanks&lt;BR /&gt;Facchini Gabriele</description>
      <pubDate>Tue, 26 Oct 2004 11:01:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-linux-versus-hp/m-p/4867432#M860664</guid>
      <dc:creator>Gabriele FACCHINI</dc:creator>
      <dc:date>2004-10-26T11:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: find linux versus HP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-linux-versus-hp/m-p/4867433#M860665</link>
      <description>The standard "find" does not -printf. You can get the gnu find from the porting and archive center. It has that ability.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Gnu/findutils-4.1.5/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Gnu/findutils-4.1.5/&lt;/A&gt;&lt;BR /&gt;  &lt;BR /&gt;HTH&lt;BR /&gt; &lt;BR /&gt;-- Rod Hills</description>
      <pubDate>Tue, 26 Oct 2004 11:29:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-linux-versus-hp/m-p/4867433#M860665</guid>
      <dc:creator>Rodney Hills</dc:creator>
      <dc:date>2004-10-26T11:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: find linux versus HP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-linux-versus-hp/m-p/4867434#M860666</link>
      <description>I try to download this utility.&lt;BR /&gt;Thanks for your help. &lt;BR /&gt;Facchini Gabriele</description>
      <pubDate>Wed, 27 Oct 2004 01:22:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-linux-versus-hp/m-p/4867434#M860666</guid>
      <dc:creator>Gabriele FACCHINI</dc:creator>
      <dc:date>2004-10-27T01:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: find linux versus HP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-linux-versus-hp/m-p/4867435#M860667</link>
      <description>Now find work fine.&lt;BR /&gt;Thanks&lt;BR /&gt;Facchini Gabriele</description>
      <pubDate>Wed, 27 Oct 2004 06:29:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-linux-versus-hp/m-p/4867435#M860667</guid>
      <dc:creator>Gabriele FACCHINI</dc:creator>
      <dc:date>2004-10-27T06:29:47Z</dc:date>
    </item>
  </channel>
</rss>

