<?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 Shell script that count 90 day!!! in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953542#M779657</link>
    <description>Hi,&lt;BR /&gt;i need to cancel by script in a directory a file oldest than 90 day .&lt;BR /&gt;Help me Thanks a lot .....</description>
    <pubDate>Thu, 19 Jan 2006 10:41:32 GMT</pubDate>
    <dc:creator>gigiz</dc:creator>
    <dc:date>2006-01-19T10:41:32Z</dc:date>
    <item>
      <title>Shell script that count 90 day!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953542#M779657</link>
      <description>Hi,&lt;BR /&gt;i need to cancel by script in a directory a file oldest than 90 day .&lt;BR /&gt;Help me Thanks a lot .....</description>
      <pubDate>Thu, 19 Jan 2006 10:41:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953542#M779657</guid>
      <dc:creator>gigiz</dc:creator>
      <dc:date>2006-01-19T10:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: Shell script that count 90 day!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953543#M779658</link>
      <description>find /dirname -type f -mtime +90 -exec rm {} \;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 19 Jan 2006 10:43:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953543#M779658</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2006-01-19T10:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Shell script that count 90 day!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953544#M779659</link>
      <description>Hi gigiz, the command above is perfect, but just be carefull when you specify the mtime value, if you do a mistake and instead of +90 you specify -90, you will delete all files that where created in the last 90 days.</description>
      <pubDate>Thu, 19 Jan 2006 10:47:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953544#M779659</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-01-19T10:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Shell script that count 90 day!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953545#M779660</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;If your directory has potentially a large number of candiates for removal, it is far more efficient to use 'xargs' in lieu of '-exec' to buffer many file name arguments into one 'rm' process:&lt;BR /&gt;&lt;BR /&gt;# find /path -xdev -type f -mtime +90 | xargs rm&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRf...</description>
      <pubDate>Thu, 19 Jan 2006 11:18:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953545#M779660</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-01-19T11:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: Shell script that count 90 day!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953546#M779661</link>
      <description>Hi Gigiz&lt;BR /&gt;I see the command pete given to you is the best!&lt;BR /&gt;#find /dirname -type f -mtime +90 -exec rm {} \;&lt;BR /&gt;&lt;BR /&gt;tienna</description>
      <pubDate>Thu, 19 Jan 2006 20:49:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953546#M779661</guid>
      <dc:creator>Nguyen Anh Tien</dc:creator>
      <dc:date>2006-01-19T20:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: Shell script that count 90 day!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953547#M779662</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;find start_directory -type f -mtime +90 -exec rm {} \;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Art</description>
      <pubDate>Fri, 20 Jan 2006 04:51:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953547#M779662</guid>
      <dc:creator>Arturo Galbiati</dc:creator>
      <dc:date>2006-01-20T04:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: Shell script that count 90 day!!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953548#M779663</link>
      <description>OK!!!!</description>
      <pubDate>Fri, 11 Aug 2006 08:01:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-that-count-90-day/m-p/4953548#M779663</guid>
      <dc:creator>gigiz</dc:creator>
      <dc:date>2006-08-11T08:01:45Z</dc:date>
    </item>
  </channel>
</rss>

