<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://qingliezhiquan.com/mediawiki/index.php?action=history&amp;feed=atom&amp;title=ChatGPT_%E6%9C%89%E5%A4%9A%E5%BC%BA%EF%BC%9A%E7%94%A8_ChatGPT_%E5%BD%93%E6%90%9C%E7%B4%A2%E5%BC%95%E6%93%8E</id>
	<title>ChatGPT 有多强：用 ChatGPT 当搜索引擎 - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://qingliezhiquan.com/mediawiki/index.php?action=history&amp;feed=atom&amp;title=ChatGPT_%E6%9C%89%E5%A4%9A%E5%BC%BA%EF%BC%9A%E7%94%A8_ChatGPT_%E5%BD%93%E6%90%9C%E7%B4%A2%E5%BC%95%E6%93%8E"/>
	<link rel="alternate" type="text/html" href="https://qingliezhiquan.com/mediawiki/index.php?title=ChatGPT_%E6%9C%89%E5%A4%9A%E5%BC%BA%EF%BC%9A%E7%94%A8_ChatGPT_%E5%BD%93%E6%90%9C%E7%B4%A2%E5%BC%95%E6%93%8E&amp;action=history"/>
	<updated>2026-08-07T08:11:20Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.46.0</generator>
	<entry>
		<id>https://qingliezhiquan.com/mediawiki/index.php?title=ChatGPT_%E6%9C%89%E5%A4%9A%E5%BC%BA%EF%BC%9A%E7%94%A8_ChatGPT_%E5%BD%93%E6%90%9C%E7%B4%A2%E5%BC%95%E6%93%8E&amp;diff=8190&amp;oldid=prev</id>
		<title>Mwroot: Created page with &quot;{|class=&quot;wikitable&quot; |我 |hi, I use a Linux command &quot;find&quot;. How to use find to locate a .jpg file modified probably from 2022-05-07 to 2022-06-06? |- |ChatGPT | You can use the &lt;code&gt;find&lt;/code&gt; command in Linux to locate &lt;code&gt;.jpg&lt;/code&gt; files modified within a specific date range. You can use the &lt;code&gt;-newermt&lt;/code&gt; option to specify the date range. Here&#039;s how you can use it to find &lt;code&gt;.jpg&lt;/code&gt; files modified between May 7, 2022, and June 6, 2022:  &lt;syntaxhigh...&quot;</title>
		<link rel="alternate" type="text/html" href="https://qingliezhiquan.com/mediawiki/index.php?title=ChatGPT_%E6%9C%89%E5%A4%9A%E5%BC%BA%EF%BC%9A%E7%94%A8_ChatGPT_%E5%BD%93%E6%90%9C%E7%B4%A2%E5%BC%95%E6%93%8E&amp;diff=8190&amp;oldid=prev"/>
		<updated>2025-09-29T03:35:00Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;{|class=&amp;quot;wikitable&amp;quot; |我 |hi, I use a Linux command &amp;quot;find&amp;quot;. How to use find to locate a .jpg file modified probably from 2022-05-07 to 2022-06-06? |- |ChatGPT | You can use the &amp;lt;code&amp;gt;find&amp;lt;/code&amp;gt; command in Linux to locate &amp;lt;code&amp;gt;.jpg&amp;lt;/code&amp;gt; files modified within a specific date range. You can use the &amp;lt;code&amp;gt;-newermt&amp;lt;/code&amp;gt; option to specify the date range. Here&amp;#039;s how you can use it to find &amp;lt;code&amp;gt;.jpg&amp;lt;/code&amp;gt; files modified between May 7, 2022, and June 6, 2022:  &amp;lt;syntaxhigh...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|我&lt;br /&gt;
|hi, I use a Linux command &amp;quot;find&amp;quot;. How to use find to locate a .jpg file modified probably from 2022-05-07 to 2022-06-06?&lt;br /&gt;
|-&lt;br /&gt;
|ChatGPT&lt;br /&gt;
|&lt;br /&gt;
You can use the &amp;lt;code&amp;gt;find&amp;lt;/code&amp;gt; command in Linux to locate &amp;lt;code&amp;gt;.jpg&amp;lt;/code&amp;gt; files modified within a specific date range. You can use the &amp;lt;code&amp;gt;-newermt&amp;lt;/code&amp;gt; option to specify the date range. Here&amp;#039;s how you can use it to find &amp;lt;code&amp;gt;.jpg&amp;lt;/code&amp;gt; files modified between May 7, 2022, and June 6, 2022:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot; line&amp;gt;&lt;br /&gt;
find /path/to/search -type f -name &amp;quot;*.jpg&amp;quot; -newermt 2022-05-07 ! -newermt 2022-06-07&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here&amp;#039;s what this command does:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;find&amp;lt;/code&amp;gt;: The command itself for searching files.&lt;br /&gt;
* &amp;lt;code&amp;gt;/path/to/search&amp;lt;/code&amp;gt;: Replace this with the directory where you want to start the search. You can specify the root directory or any other directory you have in mind.&lt;br /&gt;
* &amp;lt;code&amp;gt;-type f&amp;lt;/code&amp;gt;: This option specifies that you want to find regular files (not directories or other types of files).&lt;br /&gt;
* &amp;lt;code&amp;gt;-name &amp;quot;*.jpg&amp;quot;&amp;lt;/code&amp;gt;: This option filters the search to only look for files with the &amp;lt;code&amp;gt;.jpg&amp;lt;/code&amp;gt; extension.&lt;br /&gt;
* &amp;lt;code&amp;gt;-newermt 2022-05-07&amp;lt;/code&amp;gt;: This option specifies that you want to find files modified on or after May 7, 2022.&lt;br /&gt;
* &amp;lt;code&amp;gt;! -newermt 2022-06-07&amp;lt;/code&amp;gt;: This option specifies that you want to exclude files modified on or after June 7, 2022. This effectively creates a date range between May 7, 2022, and June 6, 2022.&lt;br /&gt;
&lt;br /&gt;
When you run this command, it will list all &amp;lt;code&amp;gt;.jpg&amp;lt;/code&amp;gt; files that were modified within the specified date range. Make sure to replace &amp;lt;code&amp;gt;/path/to/search&amp;lt;/code&amp;gt; with the actual directory where you want to search for the files.&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mwroot</name></author>
	</entry>
</feed>