<?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 Monitoring File Size in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847712#M773103</link>
    <description>Hi Guys,&lt;BR /&gt;I need to search a filesystem for files which has size more than a 1Gig and mail it to me. Could any one help me ?&lt;BR /&gt;&lt;BR /&gt;ta&lt;BR /&gt;Cheers&lt;BR /&gt;Sathish</description>
    <pubDate>Tue, 04 Mar 2003 22:54:07 GMT</pubDate>
    <dc:creator>sathish kannan</dc:creator>
    <dc:date>2003-03-04T22:54:07Z</dc:date>
    <item>
      <title>Monitoring File Size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847712#M773103</link>
      <description>Hi Guys,&lt;BR /&gt;I need to search a filesystem for files which has size more than a 1Gig and mail it to me. Could any one help me ?&lt;BR /&gt;&lt;BR /&gt;ta&lt;BR /&gt;Cheers&lt;BR /&gt;Sathish</description>
      <pubDate>Tue, 04 Mar 2003 22:54:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847712#M773103</guid>
      <dc:creator>sathish kannan</dc:creator>
      <dc:date>2003-03-04T22:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring File Size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847713#M773104</link>
      <description>&lt;BR /&gt;find / -type f -a size +1000000000c |mailx -s "Big Files" who@cares.com</description>
      <pubDate>Tue, 04 Mar 2003 23:01:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847713#M773104</guid>
      <dc:creator>James A. Donovan</dc:creator>
      <dc:date>2003-03-04T23:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring File Size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847714#M773105</link>
      <description>find . -type f -size 1000000000 |mailx -s "Large Files" me@wherever.com&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Mar 2003 23:03:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847714#M773105</guid>
      <dc:creator>Chris Vail</dc:creator>
      <dc:date>2003-03-04T23:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring File Size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847715#M773106</link>
      <description>HI Sathis,&lt;BR /&gt;&lt;BR /&gt;Add -xdev so that it won't traverse into the mount points under this filesystem.&lt;BR /&gt;&lt;BR /&gt;find /filesystem -xdev -type f -size 1000000000c|mailx "1 GB files" yourname@yourdomain.com&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Tue, 04 Mar 2003 23:06:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847715#M773106</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2003-03-04T23:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring File Size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847716#M773107</link>
      <description>Everyday at 1:00 AM&lt;BR /&gt;&lt;BR /&gt;00 1 * * * find / -type f -size +1000000000c |mailx -s "1 gig Files" sathish@yourcompany.com</description>
      <pubDate>Wed, 05 Mar 2003 03:03:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847716#M773107</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2003-03-05T03:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring File Size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847717#M773108</link>
      <description>Thanks for all your contribution and Fredrick's "find" option works better. &lt;BR /&gt;&lt;BR /&gt;jim's option give me bad syntax error.&lt;BR /&gt;Whereas Sridhar's and Chris option found files only if its size is 1GB. But I need to get list of files more than a Gig. Hence I gave 10 points to Fredrick and rest 2.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;Sathish</description>
      <pubDate>Wed, 05 Mar 2003 05:43:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847717#M773108</guid>
      <dc:creator>sathish kannan</dc:creator>
      <dc:date>2003-03-05T05:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: Monitoring File Size</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847718#M773109</link>
      <description>Thansk for all your help</description>
      <pubDate>Wed, 20 Sep 2006 04:56:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/monitoring-file-size/m-p/4847718#M773109</guid>
      <dc:creator>sathish kannan</dc:creator>
      <dc:date>2006-09-20T04:56:47Z</dc:date>
    </item>
  </channel>
</rss>

