<?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: finding large files in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-large-files/m-p/2926080#M817804</link>
    <description>find . -size +1000000c -print&lt;BR /&gt;&lt;BR /&gt;Will list all files, and their path, which are over 1MB. To sort change to;&lt;BR /&gt;&lt;BR /&gt;find . -size +1000000c -exec ls -l {} \; | sort -n -k5,5&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 13 Mar 2003 09:40:45 GMT</pubDate>
    <dc:creator>Stefan Farrelly</dc:creator>
    <dc:date>2003-03-13T09:40:45Z</dc:date>
    <item>
      <title>finding large files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-large-files/m-p/2926078#M817802</link>
      <description>does anyone know the best way of finding files where the size &amp;gt; 1Mb, ordering by size&lt;BR /&gt;&lt;BR /&gt;I've used the following&lt;BR /&gt;&lt;BR /&gt;ls -lR *|awk '{ if ( $5 &amp;gt; 1000000) print $0 } '|sort -n -k5,5&lt;BR /&gt;&lt;BR /&gt;but this doesn't give the full path of the files&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Mar 2003 09:29:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-large-files/m-p/2926078#M817802</guid>
      <dc:creator>Chris Baugh</dc:creator>
      <dc:date>2003-03-13T09:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: finding large files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-large-files/m-p/2926079#M817803</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;db001:# cd /var&lt;BR /&gt;db001:/var# find . -size +1000 -exec ls -l {} \;&lt;BR /&gt;&lt;BR /&gt;Robert-Jan.</description>
      <pubDate>Thu, 13 Mar 2003 09:35:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-large-files/m-p/2926079#M817803</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2003-03-13T09:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: finding large files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-large-files/m-p/2926080#M817804</link>
      <description>find . -size +1000000c -print&lt;BR /&gt;&lt;BR /&gt;Will list all files, and their path, which are over 1MB. To sort change to;&lt;BR /&gt;&lt;BR /&gt;find . -size +1000000c -exec ls -l {} \; | sort -n -k5,5&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Mar 2003 09:40:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-large-files/m-p/2926080#M817804</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2003-03-13T09:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: finding large files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-large-files/m-p/2926081#M817805</link>
      <description>du -ak | awk '{ if ( $1 &amp;gt; 1000) print $0 } '|sort -n&lt;BR /&gt;&lt;BR /&gt;will give you the size and full path, however it includes dirs as well as files, so you'd need to add some extra scripting if you want to remove them.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;Darren.</description>
      <pubDate>Thu, 13 Mar 2003 09:42:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-large-files/m-p/2926081#M817805</guid>
      <dc:creator>Darren Prior</dc:creator>
      <dc:date>2003-03-13T09:42:03Z</dc:date>
    </item>
  </channel>
</rss>

