<?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 for Nothing To Lose</title>
	<atom:link href="http://fossist.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://fossist.net</link>
	<description>If you don't have it, how can you lose it!</description>
	<lastBuildDate>Tue, 22 Mar 2011 04:20:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>Comment on Convert lines of text to HTML list item &#8211; using regex by Dexter</title>
		<link>http://fossist.net/2011/03/convert-lines-of-text-to-html-list-item-using-regex/#comment-688</link>
		<dc:creator>Dexter</dc:creator>
		<pubDate>Tue, 22 Mar 2011 04:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://fossist.net/?p=529#comment-688</guid>
		<description>@anon:  using sed is a nice idea indeed, I have used sed a lot and of  course it solves the problem in one step also.  But here I am not  expecting people who are into web development to be using sed or are  conversant with CLI usage.
In fact the piping is also not required since you can run two scripts in sed in single go seperated by semicolon ;
sed -e ’s/^/\/g;s/$/\&lt; \/li\&gt;/g’   &lt; linesinfile.txt  &gt; lineswithlist.html

have to use &amp; gt ;  to get the &amp; lt ; to get the stuff.</description>
		<content:encoded><![CDATA[<p>@anon:  using sed is a nice idea indeed, I have used sed a lot and of  course it solves the problem in one step also.  But here I am not  expecting people who are into web development to be using sed or are  conversant with CLI usage.<br />
In fact the piping is also not required since you can run two scripts in sed in single go seperated by semicolon ;<br />
sed -e ’s/^/\/g;s/$/\&lt; \/li\&gt;/g’   &lt; linesinfile.txt  &gt; lineswithlist.html</p>
<p>have to use &#038; gt ;  to get the &#038; lt ; to get the stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Convert lines of text to HTML list item &#8211; using regex by anon</title>
		<link>http://fossist.net/2011/03/convert-lines-of-text-to-html-list-item-using-regex/#comment-683</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Tue, 22 Mar 2011 03:33:03 +0000</pubDate>
		<guid isPermaLink="false">http://fossist.net/?p=529#comment-683</guid>
		<description>Your blog won&#039;t allow li and /li within angular quote.
But the idea remains same.</description>
		<content:encoded><![CDATA[<p>Your blog won&#8217;t allow li and /li within angular quote.<br />
But the idea remains same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Convert lines of text to HTML list item &#8211; using regex by anon</title>
		<link>http://fossist.net/2011/03/convert-lines-of-text-to-html-list-item-using-regex/#comment-682</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Tue, 22 Mar 2011 03:31:22 +0000</pubDate>
		<guid isPermaLink="false">http://fossist.net/?p=529#comment-682</guid>
		<description>Nice.

How about
$ cat filename &#124;sed &#039;s/^//g&#039;&#124;sed &#039;s/$//g&#039;</description>
		<content:encoded><![CDATA[<p>Nice.</p>
<p>How about<br />
$ cat filename |sed &#8216;s/^//g&#8217;|sed &#8216;s/$//g&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Convert lines of text to HTML list item &#8211; using regex by HTML all you need to know&#187; Blog Archive &#187; Nothing To Lose &#124; Convert lines of text to HTML list item &#8211; using &#8230;</title>
		<link>http://fossist.net/2011/03/convert-lines-of-text-to-html-list-item-using-regex/#comment-680</link>
		<dc:creator>HTML all you need to know&#187; Blog Archive &#187; Nothing To Lose &#124; Convert lines of text to HTML list item &#8211; using &#8230;</dc:creator>
		<pubDate>Mon, 21 Mar 2011 12:54:34 +0000</pubDate>
		<guid isPermaLink="false">http://fossist.net/?p=529#comment-680</guid>
		<description>[...] th&amp;#1110&amp;#1109 link: Nothing T&amp;#959 Lose &#124; Chat affect &amp;#959f text t&amp;#959 HTML catalog &amp;#1089&amp;#965t &#8211; b&amp;#1091 &amp;#823... Related Posts:how to convert an html link embedded in an icon to plain text &#8230;CSS- Using Float [...]</description>
		<content:encoded><![CDATA[<p>[...] th&amp;#1110&amp;#1109 link: Nothing T&amp;#959 Lose | Chat affect &amp;#959f text t&amp;#959 HTML catalog &amp;#1089&amp;#965t &#8211; b&amp;#1091 &amp;#823&#8230; Related Posts:how to convert an html link embedded in an icon to plain text &#8230;CSS- Using Float [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Counting occurences of a words/pattern using grep and wc by Dexter</title>
		<link>http://fossist.net/2009/03/counting-occurence-of-a-wordspattern/#comment-583</link>
		<dc:creator>Dexter</dc:creator>
		<pubDate>Wed, 02 Mar 2011 03:56:30 +0000</pubDate>
		<guid isPermaLink="false">http://fossist.net/?p=427#comment-583</guid>
		<description>@Ashok:

if you are just looking for small &#039;l&#039; 

grep -o &#039;l&#039;  sample.txt &#124; wc -l    

if you are not bothered about the case sensitivity the use -i with grep:

grep -io &#039;l&#039;  sample.txt &#124; wc -l</description>
		<content:encoded><![CDATA[<p>@Ashok:</p>
<p>if you are just looking for small &#8216;l&#8217; </p>
<p>grep -o &#8216;l&#8217;  sample.txt | wc -l    </p>
<p>if you are not bothered about the case sensitivity the use -i with grep:</p>
<p>grep -io &#8216;l&#8217;  sample.txt | wc -l</p>
]]></content:encoded>
	</item>
</channel>
</rss>

