<?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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comentarios para Emmanuel Oga's Weblog</title>
	<atom:link href="http://emmanueloga.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://emmanueloga.wordpress.com</link>
	<description>the way that denies by denying</description>
	<lastBuildDate>Mon, 28 Sep 2009 00:30:37 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comentario de Henry en Ubuntu gutsy problem number two: ruby script/console fails to start (readline)</title>
		<link>http://emmanueloga.wordpress.com/2007/11/29/ubuntu-gutsy-problem-number-two-ruby-scriptconsole-fails-to-start-readline/#comment-283</link>
		<dc:creator>Henry</dc:creator>
		<pubDate>Mon, 28 Sep 2009 00:30:37 +0000</pubDate>
		<guid isPermaLink="false">http://emmanueloga.wordpress.com/2007/11/29/ubuntu-gutsy-problem-number-two-ruby-scriptconsole-fails-to-start-readline/#comment-283</guid>
		<description>Hi, thanks for posting this.  I had the problem with a new source install with ruby 1.8.7 patchlevel 72.</description>
		<content:encoded><![CDATA[<p>Hi, thanks for posting this.  I had the problem with a new source install with ruby 1.8.7 patchlevel 72.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de emmanueloga en Linux: moving  around files with white spaces on the path name</title>
		<link>http://emmanueloga.wordpress.com/2009/08/11/linux-moving-around-files-with-white-spaces-on-the-path-name/#comment-282</link>
		<dc:creator>emmanueloga</dc:creator>
		<pubDate>Thu, 24 Sep 2009 11:40:44 +0000</pubDate>
		<guid isPermaLink="false">http://emmanueloga.wordpress.com/?p=206#comment-282</guid>
		<description>I&#039;ve been using linux for a while now, don&#039;t remember exactly how long. I love the command line, but some times it can become tricky. Sometimes is hard to keep all those command line switches on the top of my mind, but lucky for me, there are a ton of documentation both in the form of man pages, and also on the web (wikis, forums, blogs, etc...). It is definitely easier to use linux today than it was, say, 10 years ago :-)</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been using linux for a while now, don&#8217;t remember exactly how long. I love the command line, but some times it can become tricky. Sometimes is hard to keep all those command line switches on the top of my mind, but lucky for me, there are a ton of documentation both in the form of man pages, and also on the web (wikis, forums, blogs, etc&#8230;). It is definitely easier to use linux today than it was, say, 10 years ago <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de Ralphie en Linux: moving  around files with white spaces on the path name</title>
		<link>http://emmanueloga.wordpress.com/2009/08/11/linux-moving-around-files-with-white-spaces-on-the-path-name/#comment-281</link>
		<dc:creator>Ralphie</dc:creator>
		<pubDate>Wed, 23 Sep 2009 02:13:26 +0000</pubDate>
		<guid isPermaLink="false">http://emmanueloga.wordpress.com/?p=206#comment-281</guid>
		<description>Yes i guess exec would do the job but in my case I had done some homework for example:
1. I new where the directories for my 14gigs of data were at.
2. 14 gigs of data had a keyword bodybuilding that I used for pattern matching.
3. I wanted my command(s) to me short sweet and simple.

That was the reason I went in this direction, but had I needed to move more data that was scattered all over the place then your method should solve that problem nicely.

Keep in mind I&#039;m very green with linux in general, but I like it much more then the other alternatives out there.

I&#039;m always learning something new from it - not just feeling inept :P

How long have you been using linux/unix os?

And what are your thoughts on it?</description>
		<content:encoded><![CDATA[<p>Yes i guess exec would do the job but in my case I had done some homework for example:<br />
1. I new where the directories for my 14gigs of data were at.<br />
2. 14 gigs of data had a keyword bodybuilding that I used for pattern matching.<br />
3. I wanted my command(s) to me short sweet and simple.</p>
<p>That was the reason I went in this direction, but had I needed to move more data that was scattered all over the place then your method should solve that problem nicely.</p>
<p>Keep in mind I&#8217;m very green with linux in general, but I like it much more then the other alternatives out there.</p>
<p>I&#8217;m always learning something new from it &#8211; not just feeling inept <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>How long have you been using linux/unix os?</p>
<p>And what are your thoughts on it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de Suda en Linux: moving  around files with white spaces on the path name</title>
		<link>http://emmanueloga.wordpress.com/2009/08/11/linux-moving-around-files-with-white-spaces-on-the-path-name/#comment-280</link>
		<dc:creator>Suda</dc:creator>
		<pubDate>Sun, 20 Sep 2009 05:22:40 +0000</pubDate>
		<guid isPermaLink="false">http://emmanueloga.wordpress.com/?p=206#comment-280</guid>
		<description>Why not use -exec, I think that handles the spaces fine - as in 

find find dir1/ -type f -exec mv {} dir2/  \;

For example, if I have x and y as two directories and x has a file named &quot;this is a new file&quot; - the following works.

&gt;find y -type f -exec cat {} \;
This is test.

&gt;find y -type f
y/this is a new file

&gt;find y -type f -exec mv {} x \;

&gt;find y -type f


&gt;find x -type f
x/this is a new file

&gt;find x -type f -exec cat {} \;
This is test.</description>
		<content:encoded><![CDATA[<p>Why not use -exec, I think that handles the spaces fine &#8211; as in </p>
<p>find find dir1/ -type f -exec mv {} dir2/  \;</p>
<p>For example, if I have x and y as two directories and x has a file named &#8220;this is a new file&#8221; &#8211; the following works.</p>
<p>&gt;find y -type f -exec cat {} \;<br />
This is test.</p>
<p>&gt;find y -type f<br />
y/this is a new file</p>
<p>&gt;find y -type f -exec mv {} x \;</p>
<p>&gt;find y -type f</p>
<p>&gt;find x -type f<br />
x/this is a new file</p>
<p>&gt;find x -type f -exec cat {} \;<br />
This is test.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de Ralphie en Linux: moving  around files with white spaces on the path name</title>
		<link>http://emmanueloga.wordpress.com/2009/08/11/linux-moving-around-files-with-white-spaces-on-the-path-name/#comment-279</link>
		<dc:creator>Ralphie</dc:creator>
		<pubDate>Sun, 20 Sep 2009 03:09:19 +0000</pubDate>
		<guid isPermaLink="false">http://emmanueloga.wordpress.com/?p=206#comment-279</guid>
		<description>Emman {gracias}

For pointing out a practical use for xargs command! I used it to do something like this:

ls -c &#124;grep [Bb]odyb &#124;xargs -I {} mv {} /xas/weightlifting 

and it worked in nicely.

thanks again,
Ralphie</description>
		<content:encoded><![CDATA[<p>Emman {gracias}</p>
<p>For pointing out a practical use for xargs command! I used it to do something like this:</p>
<p>ls -c |grep [Bb]odyb |xargs -I {} mv {} /xas/weightlifting </p>
<p>and it worked in nicely.</p>
<p>thanks again,<br />
Ralphie</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de Andy Lester en Linux: moving  around files with white spaces on the path name</title>
		<link>http://emmanueloga.wordpress.com/2009/08/11/linux-moving-around-files-with-white-spaces-on-the-path-name/#comment-271</link>
		<dc:creator>Andy Lester</dc:creator>
		<pubDate>Tue, 11 Aug 2009 22:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://emmanueloga.wordpress.com/?p=206#comment-271</guid>
		<description>Wow, you&#039;re right, -i doesn&#039;t work with -g.  I thought I had that working.</description>
		<content:encoded><![CDATA[<p>Wow, you&#8217;re right, -i doesn&#8217;t work with -g.  I thought I had that working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de emmanueloga en Linux: moving  around files with white spaces on the path name</title>
		<link>http://emmanueloga.wordpress.com/2009/08/11/linux-moving-around-files-with-white-spaces-on-the-path-name/#comment-270</link>
		<dc:creator>emmanueloga</dc:creator>
		<pubDate>Tue, 11 Aug 2009 19:58:36 +0000</pubDate>
		<guid isPermaLink="false">http://emmanueloga.wordpress.com/?p=206#comment-270</guid>
		<description>Well I&#039;m using ack to generate a list of files here, since I like the convenience of ack skipping .svn directories and stuff. Ack does have a regexp filter for filenames (-g) but I could not find any way of making it behave in case insensitive way for file names. You are right about it being able to be used as filter, thats a possibility too: I think I just enjoy mixing and matching unix tools :-)</description>
		<content:encoded><![CDATA[<p>Well I&#8217;m using ack to generate a list of files here, since I like the convenience of ack skipping .svn directories and stuff. Ack does have a regexp filter for filenames (-g) but I could not find any way of making it behave in case insensitive way for file names. You are right about it being able to be used as filter, thats a possibility too: I think I just enjoy mixing and matching unix tools <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de Andy Lester en Linux: moving  around files with white spaces on the path name</title>
		<link>http://emmanueloga.wordpress.com/2009/08/11/linux-moving-around-files-with-white-spaces-on-the-path-name/#comment-269</link>
		<dc:creator>Andy Lester</dc:creator>
		<pubDate>Tue, 11 Aug 2009 19:04:36 +0000</pubDate>
		<guid isPermaLink="false">http://emmanueloga.wordpress.com/?p=206#comment-269</guid>
		<description>You shouldn&#039;t need to use grep -i in ifind?  ack supports -i with -f.  Also, ack works just fine as a filter, so you can do &quot;ack -f &#124; ack -i&quot;</description>
		<content:encoded><![CDATA[<p>You shouldn&#8217;t need to use grep -i in ifind?  ack supports -i with -f.  Also, ack works just fine as a filter, so you can do &#8220;ack -f | ack -i&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de emmanueloga en Slow Netbeans? Some tips I tried</title>
		<link>http://emmanueloga.wordpress.com/2008/03/20/faster-netbeans-yes-it-is-posible/#comment-266</link>
		<dc:creator>emmanueloga</dc:creator>
		<pubDate>Wed, 29 Jul 2009 16:00:38 +0000</pubDate>
		<guid isPermaLink="false">http://emmanueloga.wordpress.com/?p=50#comment-266</guid>
		<description>yeah actually I have not investigated much more in this field cause I switched to vim for now. What I can say is that Netbeans is definitely a great ide, but too slow for my tastes most of the times. What I really would like to see is NB compiled with something like http://www.excelsior-usa.com/jet.html or even http://gcc.gnu.org/java/. Alas, I don&#039;t think I will ever see something like that.</description>
		<content:encoded><![CDATA[<p>yeah actually I have not investigated much more in this field cause I switched to vim for now. What I can say is that Netbeans is definitely a great ide, but too slow for my tastes most of the times. What I really would like to see is NB compiled with something like <a href="http://www.excelsior-usa.com/jet.html" rel="nofollow">http://www.excelsior-usa.com/jet.html</a> or even <a href="http://gcc.gnu.org/java/" rel="nofollow">http://gcc.gnu.org/java/</a>. Alas, I don&#8217;t think I will ever see something like that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comentario de Danny en Slow Netbeans? Some tips I tried</title>
		<link>http://emmanueloga.wordpress.com/2008/03/20/faster-netbeans-yes-it-is-posible/#comment-265</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Wed, 29 Jul 2009 14:45:05 +0000</pubDate>
		<guid isPermaLink="false">http://emmanueloga.wordpress.com/?p=50#comment-265</guid>
		<description>Extracting NB on every boot? Doesn&#039;t make sense. Better idea is to rsync local folder with ramdisk</description>
		<content:encoded><![CDATA[<p>Extracting NB on every boot? Doesn&#8217;t make sense. Better idea is to rsync local folder with ramdisk</p>
]]></content:encoded>
	</item>
</channel>
</rss>
