<?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 view a configuration file without the comments</title>
	<atom:link href="http://www.simplehelp.net/2009/05/22/how-to-view-a-configuration-file-without-the-comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.simplehelp.net/2009/05/22/how-to-view-a-configuration-file-without-the-comments/</link>
	<description>Common questions, simple answers</description>
	<lastBuildDate>Sun, 22 Nov 2009 22:54:03 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: lxtips</title>
		<link>http://www.simplehelp.net/2009/05/22/how-to-view-a-configuration-file-without-the-comments/comment-page-1/#comment-10755</link>
		<dc:creator>lxtips</dc:creator>
		<pubDate>Tue, 30 Jun 2009 06:03:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplehelp.net/?p=2753#comment-10755</guid>
		<description>hi, is this the same as:

grep -v &#039;#&#039; file</description>
		<content:encoded><![CDATA[<p>hi, is this the same as:</p>
<p>grep -v &#8216;#&#8217; file</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Display files without commented-out lines &#171; Linux &#38; Stuff</title>
		<link>http://www.simplehelp.net/2009/05/22/how-to-view-a-configuration-file-without-the-comments/comment-page-1/#comment-10752</link>
		<dc:creator>Display files without commented-out lines &#171; Linux &#38; Stuff</dc:creator>
		<pubDate>Sun, 31 May 2009 11:51:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplehelp.net/?p=2753#comment-10752</guid>
		<description>[...] in CLI, Uncategorized &#124; Tags: CLI    This SimpleHelp tip could be very [...]</description>
		<content:encoded><![CDATA[<p>[...] in CLI, Uncategorized | Tags: CLI    This SimpleHelp tip could be very [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paulfxh</title>
		<link>http://www.simplehelp.net/2009/05/22/how-to-view-a-configuration-file-without-the-comments/comment-page-1/#comment-10754</link>
		<dc:creator>paulfxh</dc:creator>
		<pubDate>Sun, 31 May 2009 11:33:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplehelp.net/?p=2753#comment-10754</guid>
		<description>After a little more experimentation, I find that the command below does what the command in the article was intended to do
&lt;code&gt;sed &#039;/^#/d; /^*$/d&#039; /path/to/file/&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>After a little more experimentation, I find that the command below does what the command in the article was intended to do<br />
<code>sed '/^#/d; /^*$/d' /path/to/file/</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paulfxh</title>
		<link>http://www.simplehelp.net/2009/05/22/how-to-view-a-configuration-file-without-the-comments/comment-page-1/#comment-10753</link>
		<dc:creator>paulfxh</dc:creator>
		<pubDate>Sun, 31 May 2009 11:16:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplehelp.net/?p=2753#comment-10753</guid>
		<description>Well, after a bit of searching around, I found that this command does what I want
&lt;code&gt;sed &#039;/^#/ d&#039; /boot/grub/menu.lst&gt;/boot/grub/menu.new&lt;/code&gt;
Still not sure exactly what&#039;s wrong with the command given in the article, but it might be that the HTML has somehow &#039;distorted&#039; the first single quote mark</description>
		<content:encoded><![CDATA[<p>Well, after a bit of searching around, I found that this command does what I want<br />
<code>sed '/^#/ d' /boot/grub/menu.lst&gt;/boot/grub/menu.new</code><br />
Still not sure exactly what&#8217;s wrong with the command given in the article, but it might be that the HTML has somehow &#8216;distorted&#8217; the first single quote mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paulfxh</title>
		<link>http://www.simplehelp.net/2009/05/22/how-to-view-a-configuration-file-without-the-comments/comment-page-1/#comment-10751</link>
		<dc:creator>paulfxh</dc:creator>
		<pubDate>Sat, 30 May 2009 23:20:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplehelp.net/?p=2753#comment-10751</guid>
		<description>Your command to show a file without comments could be very useful for me.
However, when I tried to run
&lt;code&gt;# sed ‘/ ^#/d; /^ *$/d’ /boot/grub/menu.lst&lt;/code&gt;
I get this error
&lt;code&gt;sed: -e expression #1, char 1: unknown command: `�&#039;&lt;/code&gt;
&lt;code&gt;bash: /^: No such file or directory&lt;/code&gt;
Note that I copied/pasted the command directly from your post.
I have a feeling this may be a HTML-related problem.
Any clues?
Thanks
Paul</description>
		<content:encoded><![CDATA[<p>Your command to show a file without comments could be very useful for me.<br />
However, when I tried to run<br />
<code># sed ‘/ ^#/d; /^ *$/d’ /boot/grub/menu.lst</code><br />
I get this error<br />
<code>sed: -e expression #1, char 1: unknown command: `�'</code><br />
<code>bash: /^: No such file or directory</code><br />
Note that I copied/pasted the command directly from your post.<br />
I have a feeling this may be a HTML-related problem.<br />
Any clues?<br />
Thanks<br />
Paul</p>
]]></content:encoded>
	</item>
</channel>
</rss>
