<?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 command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069646#M438523</link>
    <description>This is whaty I use:&lt;BR /&gt;&lt;BR /&gt;find /usr -xdev |xargs ls -ld |sort -rnk5 |more&lt;BR /&gt;&lt;BR /&gt;will list all files in /usr largest file first.&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;Chris</description>
    <pubDate>Wed, 19 Sep 2007 09:15:12 GMT</pubDate>
    <dc:creator>lawrenzo_1</dc:creator>
    <dc:date>2007-09-19T09:15:12Z</dc:date>
    <item>
      <title>find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069642#M438519</link>
      <description>my .usr filesystem is 100% full.  I need to find what big files are occupying the space is /usr.   What arguments I need to use with find command..?</description>
      <pubDate>Wed, 19 Sep 2007 08:58:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069642#M438519</guid>
      <dc:creator>hitesh567</dc:creator>
      <dc:date>2007-09-19T08:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069643#M438520</link>
      <description>find /usr/* |sort -n&lt;BR /&gt;&lt;BR /&gt;The last files listed will be your largest ones.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Wed, 19 Sep 2007 09:02:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069643#M438520</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2007-09-19T09:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069644#M438521</link>
      <description>Hey and welcome.&lt;BR /&gt;&lt;BR /&gt;use this:&lt;BR /&gt;&lt;BR /&gt;10 largest directories:&lt;BR /&gt;$ du -kx /usr | sort -rn -k1 | head -n 10&lt;BR /&gt;&lt;BR /&gt;10 largest files:&lt;BR /&gt;$ find /usr -type f -xdev -print | xargs -e ll | sort -rn -k5 | head -n 10&lt;BR /&gt;&lt;BR /&gt;Recently modified files :&lt;BR /&gt;$ find /usr -type f -xdev -mtime -1 -print | xargs ll | sort -rn -k5&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;p.s. as you are new in this forum, don't forget to assign points.</description>
      <pubDate>Wed, 19 Sep 2007 09:02:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069644#M438521</guid>
      <dc:creator>Oviwan</dc:creator>
      <dc:date>2007-09-19T09:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069645#M438522</link>
      <description>tnks Oviwan ,it was really helpful</description>
      <pubDate>Wed, 19 Sep 2007 09:12:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069645#M438522</guid>
      <dc:creator>hitesh567</dc:creator>
      <dc:date>2007-09-19T09:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069646#M438523</link>
      <description>This is whaty I use:&lt;BR /&gt;&lt;BR /&gt;find /usr -xdev |xargs ls -ld |sort -rnk5 |more&lt;BR /&gt;&lt;BR /&gt;will list all files in /usr largest file first.&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;Chris</description>
      <pubDate>Wed, 19 Sep 2007 09:15:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069646#M438523</guid>
      <dc:creator>lawrenzo_1</dc:creator>
      <dc:date>2007-09-19T09:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069647#M438524</link>
      <description>tnks</description>
      <pubDate>Wed, 19 Sep 2007 09:16:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069647#M438524</guid>
      <dc:creator>hitesh567</dc:creator>
      <dc:date>2007-09-19T09:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: find command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069648#M438525</link>
      <description>If people's suggestions helped you you should award points. That way, if someone has the same problem as you in the future and finds your thread, they can see which answer was the most helpful (the one you give most points to).&lt;BR /&gt;&lt;BR /&gt;No points for this post please.&lt;BR /&gt;&lt;BR /&gt;Mark Syder (like the drink but spelt different)</description>
      <pubDate>Wed, 19 Sep 2007 10:03:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-command/m-p/5069648#M438525</guid>
      <dc:creator>MarkSyder</dc:creator>
      <dc:date>2007-09-19T10:03:00Z</dc:date>
    </item>
  </channel>
</rss>

