<?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: 12 Practical Examples of Linux Grep Command	</title>
	<atom:link href="https://www.tecmint.com/12-practical-examples-of-linux-grep-command/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/12-practical-examples-of-linux-grep-command/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 25 Jan 2024 05:36:24 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Thanh Phong		</title>
		<link>https://www.tecmint.com/12-practical-examples-of-linux-grep-command/comment-page-1/#comment-1367873</link>

		<dc:creator><![CDATA[Thanh Phong]]></dc:creator>
		<pubDate>Mon, 28 Sep 2020 09:33:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=4613#comment-1367873</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/12-practical-examples-of-linux-grep-command/comment-page-1/#comment-1367872&quot;&gt;Thanh Phong&lt;/a&gt;.

Sorry, the acutal command is:
&lt;pre&gt;
# echo Host * &#124; grep &quot;Host \*$&quot; not work !!
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/12-practical-examples-of-linux-grep-command/comment-page-1/#comment-1367872">Thanh Phong</a>.</p>
<p>Sorry, the acutal command is:</p>
<pre>
# echo Host * | grep "Host \*$" not work !!
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Thanh Phong		</title>
		<link>https://www.tecmint.com/12-practical-examples-of-linux-grep-command/comment-page-1/#comment-1367872</link>

		<dc:creator><![CDATA[Thanh Phong]]></dc:creator>
		<pubDate>Mon, 28 Sep 2020 09:31:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=4613#comment-1367872</guid>

					<description><![CDATA[Please tell me how to find &lt;code&gt;*&lt;/code&gt; using grep command?
&lt;pre&gt;
# echo Host * &#124; grep &quot;Host \*&quot; not work !!
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>Please tell me how to find <code>*</code> using grep command?</p>
<pre>
# echo Host * | grep "Host \*" not work !!
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ggx2		</title>
		<link>https://www.tecmint.com/12-practical-examples-of-linux-grep-command/comment-page-1/#comment-940884</link>

		<dc:creator><![CDATA[ggx2]]></dc:creator>
		<pubDate>Mon, 27 Nov 2017 06:45:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=4613#comment-940884</guid>

					<description><![CDATA[Your first example is an awesome choice! It&#039;s exactly what I came here looking how to use grep to do.]]></description>
			<content:encoded><![CDATA[<p>Your first example is an awesome choice! It&#8217;s exactly what I came here looking how to use grep to do.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nemanja		</title>
		<link>https://www.tecmint.com/12-practical-examples-of-linux-grep-command/comment-page-1/#comment-927195</link>

		<dc:creator><![CDATA[Nemanja]]></dc:creator>
		<pubDate>Thu, 26 Oct 2017 13:51:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=4613#comment-927195</guid>

					<description><![CDATA[The example number 2 is is VERY WRONG.
&lt;pre&gt;
# grep -v “#” /etc/apache2/sites-available/default-ssl
&lt;/pre&gt;
will also exclude lines like: value display_errors off; # turns off errors right way to this is:
&lt;pre&gt;
# grep -v &quot;^#&quot;  /etc/apache2/sites-available/default-ssl
&lt;pre&gt;
so it will exclude only lines that begins with &lt;strong&gt;#&lt;/strong&gt;.]]></description>
			<content:encoded><![CDATA[<p>The example number 2 is is VERY WRONG.</p>
<pre>
# grep -v “#” /etc/apache2/sites-available/default-ssl
</pre>
<p>will also exclude lines like: value display_errors off; # turns off errors right way to this is:</p>
<pre>
# grep -v "^#"  /etc/apache2/sites-available/default-ssl
</pre>
<pre>
so it will exclude only lines that begins with <strong>#</strong>.</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/12-practical-examples-of-linux-grep-command/comment-page-1/#comment-865201</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Tue, 07 Feb 2017 09:47:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=4613#comment-865201</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/12-practical-examples-of-linux-grep-command/comment-page-1/#comment-865197&quot;&gt;saravana&lt;/a&gt;.

@Saravana,

Here is the guide that explain the difference between grep, egrep, grep etc.

&lt;a href=&quot;http://www.tecmint.com/difference-between-grep-egrep-and-fgrep-in-linux/&quot; target=&quot;_blank&quot;&gt;What&#039;s Difference Between Grep, Egrep and Fgrep&lt;/a&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/12-practical-examples-of-linux-grep-command/comment-page-1/#comment-865197">saravana</a>.</p>
<p>@Saravana,</p>
<p>Here is the guide that explain the difference between grep, egrep, grep etc.</p>
<p><a target="_blank" href="http://www.tecmint.com/difference-between-grep-egrep-and-fgrep-in-linux/" target="_blank">What&#8217;s Difference Between Grep, Egrep and Fgrep</a></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
