<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Find Recent or Today&#8217;s Modified Files in Linux	</title>
	<atom:link href="https://www.tecmint.com/find-recent-modified-files-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/find-recent-modified-files-in-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 06 Jun 2024 04:15:44 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/find-recent-modified-files-in-linux/comment-page-1/#comment-2177823</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Thu, 06 Jun 2024 04:15:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23727#comment-2177823</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/find-recent-modified-files-in-linux/comment-page-1/#comment-2177757&quot;&gt;Sebastian Llaurador&lt;/a&gt;.

@Sebastian,

If you want to list all files modified in the last 24 hours without using the &lt;strong&gt;find&lt;/strong&gt; command, you can use a combination of &lt;strong&gt;ls&lt;/strong&gt;, &lt;strong&gt;stat&lt;/strong&gt;, and &lt;strong&gt;awk&lt;/strong&gt;.
&lt;code&gt;
ls -lR --time-style=+%Y-%m-%dT%H:%M:%S &#124; awk -v now=&quot;$(date +%s)&quot; &#039;{if ($6 ~ /^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$/) {cmd=&quot;date -d &quot;$6&quot; +%s&quot;; cmd &#124; getline filetime; if ((now - filetime) &lt;= 86400) print $NF}}&#039;
&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/find-recent-modified-files-in-linux/comment-page-1/#comment-2177757">Sebastian Llaurador</a>.</p>
<p>@Sebastian,</p>
<p>If you want to list all files modified in the last 24 hours without using the <strong>find</strong> command, you can use a combination of <strong>ls</strong>, <strong>stat</strong>, and <strong>awk</strong>.<br />
<code><br />
ls -lR --time-style=+%Y-%m-%dT%H:%M:%S | awk -v now="$(date +%s)" '{if ($6 ~ /^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$/) {cmd="date -d "$6" +%s"; cmd | getline filetime; if ((now - filetime) <= 86400) print $NF}}'
</code></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sebastian Llaurador		</title>
		<link>https://www.tecmint.com/find-recent-modified-files-in-linux/comment-page-1/#comment-2177757</link>

		<dc:creator><![CDATA[Sebastian Llaurador]]></dc:creator>
		<pubDate>Wed, 05 Jun 2024 23:15:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23727#comment-2177757</guid>

					<description><![CDATA[I would like to know a command that lists all files modified in the last 24 hours without using the &lt;strong&gt;find&lt;/strong&gt; command.]]></description>
			<content:encoded><![CDATA[<p>I would like to know a command that lists all files modified in the last 24 hours without using the <strong>find</strong> command.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Alex		</title>
		<link>https://www.tecmint.com/find-recent-modified-files-in-linux/comment-page-1/#comment-1880117</link>

		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Sat, 17 Sep 2022 07:05:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23727#comment-1880117</guid>

					<description><![CDATA[Does the check &lt;code&gt;/etc&lt;/code&gt; directory have any new files created (compared to the last run)? If yes, display the file information and if it is a text file, display the first 10 lines of the file]]></description>
			<content:encoded><![CDATA[<p>Does the check <code>/etc</code> directory have any new files created (compared to the last run)? If yes, display the file information and if it is a text file, display the first 10 lines of the file</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Shane Wiley		</title>
		<link>https://www.tecmint.com/find-recent-modified-files-in-linux/comment-page-1/#comment-1769036</link>

		<dc:creator><![CDATA[Shane Wiley]]></dc:creator>
		<pubDate>Mon, 18 Apr 2022 01:44:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23727#comment-1769036</guid>

					<description><![CDATA[I just need a GUI click that shows me download files starting most recently.  Only need to do it once in a while.  Thanks for all those that have given me complex command line info but I only need to do it once in a while and a click should do it.]]></description>
			<content:encoded><![CDATA[<p>I just need a GUI click that shows me download files starting most recently.  Only need to do it once in a while.  Thanks for all those that have given me complex command line info but I only need to do it once in a while and a click should do it.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Shozib Javed		</title>
		<link>https://www.tecmint.com/find-recent-modified-files-in-linux/comment-page-1/#comment-1399755</link>

		<dc:creator><![CDATA[Shozib Javed]]></dc:creator>
		<pubDate>Thu, 10 Dec 2020 10:34:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23727#comment-1399755</guid>

					<description><![CDATA[Hi, 

Could anyone please help me? 

I want to track editing made in the last some days into my systems&#039; network interface file (ens192). 


Thanks and Regards,
Shozib Javed]]></description>
			<content:encoded><![CDATA[<p>Hi, </p>
<p>Could anyone please help me? </p>
<p>I want to track editing made in the last some days into my systems&#8217; network interface file (ens192). </p>
<p>Thanks and Regards,<br />
Shozib Javed</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
