<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ipsa scientia potestas est &#187; Technical</title>
	<atom:link href="http://blogs.nonado.net/sith/category/technical/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.nonado.net/sith</link>
	<description>Please help I'm trapped inside my own head</description>
	<lastBuildDate>Mon, 09 Jul 2007 15:39:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Perl: Replacing every instance of a Regex found in multiple files&#8230;</title>
		<link>http://blogs.nonado.net/sith/2007/05/23/perl-replacing-every-instance-of-a-regex-found-in-multiple-files/</link>
		<comments>http://blogs.nonado.net/sith/2007/05/23/perl-replacing-every-instance-of-a-regex-found-in-multiple-files/#comments</comments>
		<pubDate>Wed, 23 May 2007 14:27:30 +0000</pubDate>
		<dc:creator>sith</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://blogs.nonado.net/sith/2007/05/23/perl-replacing-every-instance-of-a-regex-found-in-multiple-files/</guid>
		<description><![CDATA[Simply use the following command;
perl -pi~ -e 's/regexp1/regexp2/' files
Where;

regexp1 - Regular expression you are seeking.  
regexp2 - It's replacement.

files -  The files you wish this replacement to occur.

]]></description>
			<content:encoded><![CDATA[<p>Simply use the following command;</p>
<p><tt>perl -pi~ -e 's/regexp1/regexp2/' <em>files</em></tt></p>
<p>Where;</p>
<ol>
<li><tt>regexp1 - Regular expression you are seeking.  </tt></li>
<li><tt>regexp2 - It's replacement.<br />
</tt></li>
<li><tt>files -</tt>  <tt>The files you wish this replacement to occur.</tt></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blogs.nonado.net/sith/2007/05/23/perl-replacing-every-instance-of-a-regex-found-in-multiple-files/feed/</wfw:commentRss>
		<slash:comments>85</slash:comments>
		</item>
		<item>
		<title>Vim: Counting the number of matches&#8230;</title>
		<link>http://blogs.nonado.net/sith/2007/05/23/vim-counting-the-number-of-matches/</link>
		<comments>http://blogs.nonado.net/sith/2007/05/23/vim-counting-the-number-of-matches/#comments</comments>
		<pubDate>Wed, 23 May 2007 14:21:38 +0000</pubDate>
		<dc:creator>sith</dc:creator>
				<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://blogs.nonado.net/sith/2007/05/23/vim-counting-the-number-of-matches/</guid>
		<description><![CDATA[A useful trick in Vim to return the number of matched expressions in a file;
let x=0 &#124; g/regexp/let x=x+1
echo x 
where regexp obviously is the  regular expression (pattern) you wish to  count.
]]></description>
			<content:encoded><![CDATA[<p>A useful trick in Vim to return the number of matched expressions in a file;</p>
<p><tt>let x=0 | g/regexp/let x=x+1<br />
echo x </tt></p>
<p>where <tt>regexp</tt> obviously is the  regular expression (pattern) you wish to  count.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.nonado.net/sith/2007/05/23/vim-counting-the-number-of-matches/feed/</wfw:commentRss>
		<slash:comments>93</slash:comments>
		</item>
	</channel>
</rss>
