<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Linux Command Line &#8220;Search and Replace&#8221; Text in Files Recursively &#8220;Find and Replace&#8221; Grep Sed Python Regex Regular Expression</title>
	<atom:link href="http://bookmarks.honewatson.com/2008/12/02/linux-command-line-search-and-replace-text-in-files-recursively-find-and-replace-grep-sed-python-regex-regular-expression/feed/" rel="self" type="application/rss+xml" />
	<link>http://bookmarks.honewatson.com/2008/12/02/linux-command-line-search-and-replace-text-in-files-recursively-find-and-replace-grep-sed-python-regex-regular-expression/</link>
	<description>I bring you the best from the web - random bookmarks.</description>
	<lastBuildDate>Fri, 14 Oct 2011 13:38:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Johan Vervloet</title>
		<link>http://bookmarks.honewatson.com/2008/12/02/linux-command-line-search-and-replace-text-in-files-recursively-find-and-replace-grep-sed-python-regex-regular-expression/#comment-1113</link>
		<dc:creator><![CDATA[Johan Vervloet]]></dc:creator>
		<pubDate>Wed, 29 Apr 2009 07:15:01 +0000</pubDate>
		<guid isPermaLink="false">http://bookmarks.honewatson.com/2008/12/02/linux-command-line-search-and-replace-text-in-files-recursively-find-and-replace-grep-sed-python-regex-regular-expression/#comment-1113</guid>
		<description><![CDATA[I found this oneliner

find ./ -type f -exec sed -i &#039;s/string1/string2/&#039; {} \;

on http://gabeanderson.com/2008/02/01/unixlinux-find-replace-in-multiple-files/]]></description>
		<content:encoded><![CDATA[<p>I found this oneliner</p>
<p>find ./ -type f -exec sed -i &#8216;s/string1/string2/&#8217; {} \;</p>
<p>on <a href="http://gabeanderson.com/2008/02/01/unixlinux-find-replace-in-multiple-files/" rel="nofollow">http://gabeanderson.com/2008/02/01/unixlinux-find-replace-in-multiple-files/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Unix bash snippet: global replace text in multiple files &#171; earth is my favourite planet</title>
		<link>http://bookmarks.honewatson.com/2008/12/02/linux-command-line-search-and-replace-text-in-files-recursively-find-and-replace-grep-sed-python-regex-regular-expression/#comment-1096</link>
		<dc:creator><![CDATA[Unix bash snippet: global replace text in multiple files &#171; earth is my favourite planet]]></dc:creator>
		<pubDate>Tue, 03 Mar 2009 01:50:51 +0000</pubDate>
		<guid isPermaLink="false">http://bookmarks.honewatson.com/2008/12/02/linux-command-line-search-and-replace-text-in-files-recursively-find-and-replace-grep-sed-python-regex-regular-expression/#comment-1096</guid>
		<description><![CDATA[[...] in Uncategorized    Unlike this overkill solution in python, bash is the best tool for this sort of task.  grep  and  sed  are your friends&#8230; [...]]]></description>
		<content:encoded><![CDATA[<p>[...] in Uncategorized    Unlike this overkill solution in python, bash is the best tool for this sort of task.  grep  and  sed  are your friends&#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Unix bash snippet: global replace text in multiple files &#171; earth is my favourite planet</title>
		<link>http://bookmarks.honewatson.com/2008/12/02/linux-command-line-search-and-replace-text-in-files-recursively-find-and-replace-grep-sed-python-regex-regular-expression/#comment-1095</link>
		<dc:creator><![CDATA[Unix bash snippet: global replace text in multiple files &#171; earth is my favourite planet]]></dc:creator>
		<pubDate>Tue, 03 Mar 2009 01:48:03 +0000</pubDate>
		<guid isPermaLink="false">http://bookmarks.honewatson.com/2008/12/02/linux-command-line-search-and-replace-text-in-files-recursively-find-and-replace-grep-sed-python-regex-regular-expression/#comment-1095</guid>
		<description><![CDATA[[...] in Uncategorized    Unlike this overkill solution in python, bash is the best tool for this sort of task. grep  and  sed  are your friends; for file [...]]]></description>
		<content:encoded><![CDATA[<p>[...] in Uncategorized    Unlike this overkill solution in python, bash is the best tool for this sort of task. grep  and  sed  are your friends; for file [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ropata</title>
		<link>http://bookmarks.honewatson.com/2008/12/02/linux-command-line-search-and-replace-text-in-files-recursively-find-and-replace-grep-sed-python-regex-regular-expression/#comment-1089</link>
		<dc:creator><![CDATA[ropata]]></dc:creator>
		<pubDate>Mon, 23 Feb 2009 04:29:11 +0000</pubDate>
		<guid isPermaLink="false">http://bookmarks.honewatson.com/2008/12/02/linux-command-line-search-and-replace-text-in-files-recursively-find-and-replace-grep-sed-python-regex-regular-expression/#comment-1089</guid>
		<description><![CDATA[hmm, grep and sed still seem easier! 

for file in `grep -r -l abc *`
do sed &#039;s/abc/xyz/g&#039; $file &gt; $file.fixed
echo $file.fixed
done]]></description>
		<content:encoded><![CDATA[<p>hmm, grep and sed still seem easier! </p>
<p>for file in `grep -r -l abc *`<br />
do sed &#8216;s/abc/xyz/g&#8217; $file &gt; $file.fixed<br />
echo $file.fixed<br />
done</p>
]]></content:encoded>
	</item>
</channel>
</rss>

