<?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: file access date in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127395#M152233</link>
    <description>Bryan,&lt;BR /&gt;&lt;BR /&gt;The -u option of the ls command will give you last accessed date.  Just grep for your desired time:&lt;BR /&gt;&lt;BR /&gt;"ls -u /dir |grep 'November 23'"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
    <pubDate>Mon, 24 Nov 2003 10:51:28 GMT</pubDate>
    <dc:creator>Pete Randall</dc:creator>
    <dc:date>2003-11-24T10:51:28Z</dc:date>
    <item>
      <title>file access date</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127394#M152232</link>
      <description>I feel that this question has probably been asked here before, but I was unable to find anything similar while searching the forum. So, I will ask.&lt;BR /&gt;&lt;BR /&gt;I have a need to find what file was accessed at 01:52 on November 23 2003, on one of my boxes. How can I go about doing that? Any ideas would be greatly appreciated. &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;-Bryan</description>
      <pubDate>Mon, 24 Nov 2003 10:46:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127394#M152232</guid>
      <dc:creator>Bryan D. Quinn</dc:creator>
      <dc:date>2003-11-24T10:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: file access date</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127395#M152233</link>
      <description>Bryan,&lt;BR /&gt;&lt;BR /&gt;The -u option of the ls command will give you last accessed date.  Just grep for your desired time:&lt;BR /&gt;&lt;BR /&gt;"ls -u /dir |grep 'November 23'"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Mon, 24 Nov 2003 10:51:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127395#M152233</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-11-24T10:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: file access date</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127396#M152234</link>
      <description>Thanks Pete,&lt;BR /&gt;&lt;BR /&gt;I was looking for something to do a recursive search through the entire system, starting at /.&lt;BR /&gt;&lt;BR /&gt;I should have had a little more detail in my question.&lt;BR /&gt;&lt;BR /&gt;-Bryan</description>
      <pubDate>Mon, 24 Nov 2003 10:56:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127396#M152234</guid>
      <dc:creator>Bryan D. Quinn</dc:creator>
      <dc:date>2003-11-24T10:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: file access date</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127397#M152235</link>
      <description>Don't think find -atime has low enough granularity, so how about &lt;BR /&gt;&lt;BR /&gt;ls -lut / |grep "Nov 23 01:52"&lt;BR /&gt;&lt;BR /&gt;Trouble is, that will only give you the file name(s), not locations, so you'll then need to do a 2nd pass with find to locate the file(s).&lt;BR /&gt;&lt;BR /&gt;-- Graham</description>
      <pubDate>Mon, 24 Nov 2003 10:57:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127397#M152235</guid>
      <dc:creator>Graham Cameron_1</dc:creator>
      <dc:date>2003-11-24T10:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: file access date</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127398#M152236</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;# touch -t 0311230151 /tmp/before&lt;BR /&gt;# touch -t 0311230153 /tmp/after&lt;BR /&gt;# find / \( -newer /tmp/before -a ! -newer /tmp/before)&lt;BR /&gt;&lt;BR /&gt;Regards.&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Nov 2003 10:57:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127398#M152236</guid>
      <dc:creator>Jean-Louis Phelix</dc:creator>
      <dc:date>2003-11-24T10:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: file access date</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127399#M152237</link>
      <description>Hi,&lt;BR /&gt;you can try something like this:&lt;BR /&gt;&lt;BR /&gt;find &lt;START_DIR&gt; -type f -exec ls -lu {} \;| grep "Nov 23 01:52"&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;John K.&lt;BR /&gt;&lt;/START_DIR&gt;</description>
      <pubDate>Mon, 24 Nov 2003 10:57:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127399#M152237</guid>
      <dc:creator>john korterman</dc:creator>
      <dc:date>2003-11-24T10:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: file access date</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127400#M152238</link>
      <description>Ooops ... missing \)&lt;BR /&gt;&lt;BR /&gt;# touch -t 0311230151 /tmp/before&lt;BR /&gt;# touch -t 0311230153 /tmp/after&lt;BR /&gt;# find / \( -newer /tmp/before -a ! -newer /tmp/before \)&lt;BR /&gt;&lt;BR /&gt;This will work even for old timeframes.&lt;BR /&gt;&lt;BR /&gt;Regards.</description>
      <pubDate>Mon, 24 Nov 2003 10:59:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127400#M152238</guid>
      <dc:creator>Jean-Louis Phelix</dc:creator>
      <dc:date>2003-11-24T10:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: file access date</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127401#M152239</link>
      <description>dhfgblsjkdf sdvbsdfb !!!&lt;BR /&gt;&lt;BR /&gt;# touch -t 0311230151 /tmp/before&lt;BR /&gt;# touch -t 0311230153 /tmp/after&lt;BR /&gt;# find / \( -newer /tmp/before -a ! -newer /tmp/after \)&lt;BR /&gt;&lt;BR /&gt;please no points for these tipos ...&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Mon, 24 Nov 2003 11:01:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127401#M152239</guid>
      <dc:creator>Jean-Louis Phelix</dc:creator>
      <dc:date>2003-11-24T11:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: file access date</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127402#M152240</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I assume, by access you mean update.&lt;BR /&gt;&lt;BR /&gt;find / -exec ls -l "{}" ";" | grep "Nov 23  2003"&lt;BR /&gt;&lt;BR /&gt;greetings,&lt;BR /&gt;&lt;BR /&gt;Michael</description>
      <pubDate>Mon, 24 Nov 2003 13:04:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-access-date/m-p/3127402#M152240</guid>
      <dc:creator>Michael Schulte zur Sur</dc:creator>
      <dc:date>2003-11-24T13:04:35Z</dc:date>
    </item>
  </channel>
</rss>

