<?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 a Specific String or Word in Files and Directories	</title>
	<atom:link href="https://www.tecmint.com/find-a-specific-string-or-word-in-files-and-directories/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/find-a-specific-string-or-word-in-files-and-directories/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Fri, 14 Jul 2023 02:53:41 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/find-a-specific-string-or-word-in-files-and-directories/comment-page-1/#comment-1433107</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Thu, 11 Feb 2021 09:59:14 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=28156#comment-1433107</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/find-a-specific-string-or-word-in-files-and-directories/comment-page-1/#comment-1432860&quot;&gt;Andy&lt;/a&gt;.

@Andy

Yes, first try out the solution in the guide, it should work. If not then give us feedback, we will help you.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/find-a-specific-string-or-word-in-files-and-directories/comment-page-1/#comment-1432860">Andy</a>.</p>
<p>@Andy</p>
<p>Yes, first try out the solution in the guide, it should work. If not then give us feedback, we will help you.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Andy		</title>
		<link>https://www.tecmint.com/find-a-specific-string-or-word-in-files-and-directories/comment-page-1/#comment-1432860</link>

		<dc:creator><![CDATA[Andy]]></dc:creator>
		<pubDate>Thu, 11 Feb 2021 02:41:49 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=28156#comment-1432860</guid>

					<description><![CDATA[Hi, Great info here.

I&#039;m a complete newbie to Linux, but I have a co-worker helping me out. Unfortunately, none of his solutions are working yet.

I need to search logs to find Windows logon/logoff data within a date range. This is what he&#039;s given me so far, but it&#039;s been running for two hours with no data returned.
&lt;pre&gt;
# find /var/log/remote3 -type f -newermt 2019-03-01 -print0 &#124; xargs -0 zgrep
--color=always -e 4624 -e 4634 &#124; zgrep --color=always -i 
&lt;/pre&gt;
What do you think?

It seems your solution above is MUCH easier. I will try that once this string stops/fails/disconnects...

Thank you,]]></description>
			<content:encoded><![CDATA[<p>Hi, Great info here.</p>
<p>I&#8217;m a complete newbie to Linux, but I have a co-worker helping me out. Unfortunately, none of his solutions are working yet.</p>
<p>I need to search logs to find Windows logon/logoff data within a date range. This is what he&#8217;s given me so far, but it&#8217;s been running for two hours with no data returned.</p>
<pre>
# find /var/log/remote3 -type f -newermt 2019-03-01 -print0 | xargs -0 zgrep
--color=always -e 4624 -e 4634 | zgrep --color=always -i 
</pre>
<p>What do you think?</p>
<p>It seems your solution above is MUCH easier. I will try that once this string stops/fails/disconnects&#8230;</p>
<p>Thank you,</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rajprasad		</title>
		<link>https://www.tecmint.com/find-a-specific-string-or-word-in-files-and-directories/comment-page-1/#comment-1370009</link>

		<dc:creator><![CDATA[Rajprasad]]></dc:creator>
		<pubDate>Sat, 03 Oct 2020 13:36:09 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=28156#comment-1370009</guid>

					<description><![CDATA[Hi,

I need to search a particular string in the entire server and exclude the link files. Once find the string replace with a new string. I need a shell script for this.

Thanks 
Raj]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I need to search a particular string in the entire server and exclude the link files. Once find the string replace with a new string. I need a shell script for this.</p>
<p>Thanks<br />
Raj</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/find-a-specific-string-or-word-in-files-and-directories/comment-page-1/#comment-1321684</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Mon, 16 Mar 2020 19:37:21 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=28156#comment-1321684</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/find-a-specific-string-or-word-in-files-and-directories/comment-page-1/#comment-1321373&quot;&gt;nizam&lt;/a&gt;.

@nizam

You can try any of the four ways in this guide: https://www.tecmint.com/run-commands-on-multiple-linux-servers/]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/find-a-specific-string-or-word-in-files-and-directories/comment-page-1/#comment-1321373">nizam</a>.</p>
<p>@nizam</p>
<p>You can try any of the four ways in this guide: <a target="_blank" href="https://www.tecmint.com/run-commands-on-multiple-linux-servers/" rel="ugc">https://www.tecmint.com/run-commands-on-multiple-linux-servers/</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: nizam		</title>
		<link>https://www.tecmint.com/find-a-specific-string-or-word-in-files-and-directories/comment-page-1/#comment-1321373</link>

		<dc:creator><![CDATA[nizam]]></dc:creator>
		<pubDate>Sun, 15 Mar 2020 09:25:04 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=28156#comment-1321373</guid>

					<description><![CDATA[Thanks for the wonderful post if I want to search keywords on all the Linux servers how do I make?]]></description>
			<content:encoded><![CDATA[<p>Thanks for the wonderful post if I want to search keywords on all the Linux servers how do I make?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
