<?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: Why bash/*nix rules</title>
	<atom:link href="http://blogs.gnome.org/johncarr/2007/02/26/why-bashnix-rules/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.gnome.org/johncarr/2007/02/26/why-bashnix-rules/</link>
	<description>Making your brain invert and fall out of your ear since 2007</description>
	<lastBuildDate>Tue, 11 Aug 2009 14:52:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Evan</title>
		<link>http://blogs.gnome.org/johncarr/2007/02/26/why-bashnix-rules/comment-page-1/#comment-1</link>
		<dc:creator>Evan</dc:creator>
		<pubDate>Thu, 29 Mar 2007 13:37:07 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/johncarr/?p=16#comment-1</guid>
		<description>WRT to opening multiple files . . . just use gvim instead of gedit!

Ok, editor wars aside, I would use: locate mv-simple &#124; xargs -n1 gedit

The -n1 argument to xargs means that xargs should only pass 1 argument at a time to gedit -- in other words it will open gedit once per file that locate returns.</description>
		<content:encoded><![CDATA[<p>WRT to opening multiple files . . . just use gvim instead of gedit!</p>
<p>Ok, editor wars aside, I would use: locate mv-simple | xargs -n1 gedit</p>
<p>The -n1 argument to xargs means that xargs should only pass 1 argument at a time to gedit &#8212; in other words it will open gedit once per file that locate returns.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jonnylamb</title>
		<link>http://blogs.gnome.org/johncarr/2007/02/26/why-bashnix-rules/comment-page-1/#comment-2</link>
		<dc:creator>jonnylamb</dc:creator>
		<pubDate>Tue, 06 Mar 2007 12:07:10 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.gnome.org/johncarr/?p=16#comment-2</guid>
		<description>echo `locate mv-simple` &#124; xargs -i cp {} ~/Desktop

Using the -i argument on xargs means it&#039;ll replace {} with the arg (filename in this, and most, example), instead of just plonking it at the end.</description>
		<content:encoded><![CDATA[<p>echo `locate mv-simple` | xargs -i cp {} ~/Desktop</p>
<p>Using the -i argument on xargs means it&#8217;ll replace {} with the arg (filename in this, and most, example), instead of just plonking it at the end.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
