<?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 In regards of search in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/in-regards-of-search/m-p/3855179#M98170</link>
    <description>Hi, Sir,&lt;BR /&gt;How can we find the list of file created or having any changes during a particular date.&lt;BR /&gt;is there is any particular command please help me.</description>
    <pubDate>Fri, 01 Sep 2006 11:45:26 GMT</pubDate>
    <dc:creator>Indrajit Bhagat</dc:creator>
    <dc:date>2006-09-01T11:45:26Z</dc:date>
    <item>
      <title>In regards of search</title>
      <link>https://community.hpe.com/t5/operating-system-linux/in-regards-of-search/m-p/3855179#M98170</link>
      <description>Hi, Sir,&lt;BR /&gt;How can we find the list of file created or having any changes during a particular date.&lt;BR /&gt;is there is any particular command please help me.</description>
      <pubDate>Fri, 01 Sep 2006 11:45:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/in-regards-of-search/m-p/3855179#M98170</guid>
      <dc:creator>Indrajit Bhagat</dc:creator>
      <dc:date>2006-09-01T11:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: In regards of search</title>
      <link>https://community.hpe.com/t5/operating-system-linux/in-regards-of-search/m-p/3855180#M98171</link>
      <description>First, Unix has no notion of creation date - only last modification time is tracked.&lt;BR /&gt;&lt;BR /&gt;To find files created on a certain date, use the touch command to create two files, one with a timestamp of 00:01 on your target date and one with a time stamp of 23:59 on your target date.  The use the find command with a combination of -newer and ! -newer (not newer) to zero in on the files you seek.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Fri, 01 Sep 2006 11:50:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/in-regards-of-search/m-p/3855180#M98171</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2006-09-01T11:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: In regards of search</title>
      <link>https://community.hpe.com/t5/operating-system-linux/in-regards-of-search/m-p/3855181#M98172</link>
      <description>First, UNIX has no notion of the creation time of a file. ctime is change time (time of last chmod, chown and mtime is time of the last data modification.&lt;BR /&gt;&lt;BR /&gt;Do something like this leveraging find's -newer option to find files modified on 15-Nov-2005 starting from the current working directory.&lt;BR /&gt;&lt;BR /&gt;# create 2 reference files with timestamps just before and just after the date in question&lt;BR /&gt;&lt;BR /&gt;touch -m -t 200511142359.59 /var/tmp/f1 &lt;BR /&gt;touch -m -t 200511160000.00 /var/tmp/f2&lt;BR /&gt;&lt;BR /&gt;# run the find command starta CWD looking for regular files that fit the date&lt;BR /&gt;&lt;BR /&gt;find . -type f \( -newer /var/tmp/f1 -a ! -newer /var/tmp/f2 \) -print&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Sep 2006 12:03:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/in-regards-of-search/m-p/3855181#M98172</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-09-01T12:03:20Z</dc:date>
    </item>
  </channel>
</rss>

