<?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 files changed between  specific  times in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-files-changed-between-specific-times/m-p/3309024#M185220</link>
    <description>Create 2 files with timestamps of the begin and end times you want to search, eg: -&lt;BR /&gt;&lt;BR /&gt;touch start 06171300&lt;BR /&gt;touch end 06171400&lt;BR /&gt;&lt;BR /&gt;then execute: -&lt;BR /&gt;&lt;BR /&gt;find . -newer start -a ! -newer end&lt;BR /&gt;&lt;BR /&gt;This will find all files from current directory who's modified date is after "start"'s timestamp, AND NOT after "end"'s timestamp.&lt;BR /&gt;&lt;BR /&gt;Sy</description>
    <pubDate>Fri, 18 Jun 2004 05:59:29 GMT</pubDate>
    <dc:creator>Simon Hargrave</dc:creator>
    <dc:date>2004-06-18T05:59:29Z</dc:date>
    <item>
      <title>finding files changed between  specific  times</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-files-changed-between-specific-times/m-p/3309023#M185219</link>
      <description>hi all,&lt;BR /&gt;&lt;BR /&gt;is there anyway to find out files modified / created between specific times.&lt;BR /&gt;eg: at 3pm i want to find and copy files which has been modified /created betten 1pm to 2pm.&lt;BR /&gt;&lt;BR /&gt;regds,&lt;BR /&gt;bhavin</description>
      <pubDate>Fri, 18 Jun 2004 05:48:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-files-changed-between-specific-times/m-p/3309023#M185219</guid>
      <dc:creator>bhavin asokan</dc:creator>
      <dc:date>2004-06-18T05:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: finding files changed between  specific  times</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-files-changed-between-specific-times/m-p/3309024#M185220</link>
      <description>Create 2 files with timestamps of the begin and end times you want to search, eg: -&lt;BR /&gt;&lt;BR /&gt;touch start 06171300&lt;BR /&gt;touch end 06171400&lt;BR /&gt;&lt;BR /&gt;then execute: -&lt;BR /&gt;&lt;BR /&gt;find . -newer start -a ! -newer end&lt;BR /&gt;&lt;BR /&gt;This will find all files from current directory who's modified date is after "start"'s timestamp, AND NOT after "end"'s timestamp.&lt;BR /&gt;&lt;BR /&gt;Sy</description>
      <pubDate>Fri, 18 Jun 2004 05:59:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-files-changed-between-specific-times/m-p/3309024#M185220</guid>
      <dc:creator>Simon Hargrave</dc:creator>
      <dc:date>2004-06-18T05:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: finding files changed between  specific  times</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-files-changed-between-specific-times/m-p/3309025#M185221</link>
      <description>Hai,&lt;BR /&gt;&lt;BR /&gt; You can get the modified files as &lt;BR /&gt;&lt;BR /&gt; find / -type f -mtime &lt;HOUR&gt;&lt;BR /&gt;&lt;BR /&gt; If you want to know the files modified at 1- 2 pm you to execute this 2:01 PM. &lt;BR /&gt;&lt;BR /&gt; Else we can go for common method as,&lt;BR /&gt; &lt;BR /&gt;  find / -type f | while read line; do&lt;BR /&gt;  &lt;BR /&gt;   Get the file value with ll or ls -l&lt;BR /&gt;   Get the date with date coomand and check for the month and date.&lt;BR /&gt;&lt;BR /&gt;   Problem with the ls -l or ll that &lt;BR /&gt; ===== man ls ========&lt;BR /&gt;If the time of last modification is greater&lt;BR /&gt;than six months ago, or any time in the future, the year is&lt;BR /&gt;substituted for the hour and minute of the modification&lt;BR /&gt;time.&lt;BR /&gt;======================&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; If you are going to detect the files from root to leaf directory then this operation will take some time.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Muthukumar&lt;/HOUR&gt;</description>
      <pubDate>Fri, 18 Jun 2004 06:11:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-files-changed-between-specific-times/m-p/3309025#M185221</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-06-18T06:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: finding files changed between  specific  times</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-files-changed-between-specific-times/m-p/3309026#M185222</link>
      <description>Hi Bhavin,&lt;BR /&gt;&lt;BR /&gt;You can use ls -ltc to get the list of files sorted on ctime. This can be used to find the the time of creation/modification of the file.&lt;BR /&gt;&lt;BR /&gt;see manpage of ls&lt;BR /&gt;&lt;BR /&gt;manish</description>
      <pubDate>Fri, 18 Jun 2004 06:33:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-files-changed-between-specific-times/m-p/3309026#M185222</guid>
      <dc:creator>Manish Srivastava</dc:creator>
      <dc:date>2004-06-18T06:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: finding files changed between  specific  times</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-files-changed-between-specific-times/m-p/3309027#M185223</link>
      <description>Hai,&lt;BR /&gt;&lt;BR /&gt; Let us come to feasible solution.&lt;BR /&gt;&lt;BR /&gt; Create the file with 01.00 PM with touch&lt;BR /&gt;&lt;BR /&gt; as touch -t 06180100 start (MMDDHHMM)&lt;BR /&gt;&lt;BR /&gt; end file as &lt;BR /&gt;   touch -t 06180200 end &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; Use the find command to find only the files as&lt;BR /&gt;  find / -type f -newer start ! -a -newer end&lt;BR /&gt;&lt;BR /&gt; It will give the created / modified (only the ) files in the duration&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Muthukumar.</description>
      <pubDate>Fri, 18 Jun 2004 06:46:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-files-changed-between-specific-times/m-p/3309027#M185223</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-06-18T06:46:30Z</dc:date>
    </item>
  </channel>
</rss>

