<?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>Abner Ballardo &#187; unix</title>
	<atom:link href="http://www.modlost.net/home/tag/unix/feed" rel="self" type="application/rss+xml" />
	<link>http://www.modlost.net/home</link>
	<description>Thoughts about software development &#38; productivity</description>
	<lastBuildDate>Fri, 27 Aug 2010 03:50:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Mr. Solís: Usando el comando topas en AIX</title>
		<link>http://www.modlost.net/home/blog/mr-sol-usando-el-comando-topas-en-aix.html</link>
		<comments>http://www.modlost.net/home/blog/mr-sol-usando-el-comando-topas-en-aix.html#comments</comments>
		<pubDate>Fri, 07 Mar 2008 19:42:45 +0000</pubDate>
		<dc:creator>Abner</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.modlost.net/wordpress/?p=166</guid>
		<description><![CDATA[En un día caluroso del verano limeño, Mr. Solis un típico usuario de sistemas y Ryan un típico arquitecto tienen esta atípica conversación: Mr. Solis: Ryan! necesito ver como esta el uso de recursos del servidor AIX Ryan: Que información necesitas? Mr. Solis: El uso del procesador! Ryan: Ah!,&#8230; puedes usar el comando topas Luego [...]]]></description>
			<content:encoded><![CDATA[<p>En un día caluroso del verano limeño, Mr. Solis un típico usuario de sistemas y Ryan un típico arquitecto tienen esta atípica conversación:</p>
<p><strong>Mr. Solis: </strong> Ryan! necesito ver como esta el uso de recursos del servidor AIX</p>
<p><strong>Ryan: </strong> Que información necesitas?</p>
<p><strong>Mr. Solis: </strong> El uso del procesador!</p>
<p><strong>Ryan: </strong> Ah!,&#8230; puedes usar el comando topas</p>
<p>Luego de un momento,&#8230;</p>
<p><strong><span id="more-166"></span>Mr. Solis: </strong> Me sale &#8220;not found&#8221;<br />
<strong>Ryan: </strong> Que raro</p>
<p>Ryan se acerca a la PC de Mr. Solis y observa atónitamente que Mr. Solis habia escrito en la linea de comandos:</p>
<pre><code># topass
ksh: topass:  not found.
</code></pre>
<p><strong>Ryan: </strong> WTF!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.modlost.net/home/blog/mr-sol-usando-el-comando-topas-en-aix.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding file names without dots in their names</title>
		<link>http://www.modlost.net/home/article/finding-file-names-without-dots-in-their-names.html</link>
		<comments>http://www.modlost.net/home/article/finding-file-names-without-dots-in-their-names.html#comments</comments>
		<pubDate>Mon, 08 Oct 2007 20:09:36 +0000</pubDate>
		<dc:creator>Abner</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.modlost.net/wordpress/?p=200</guid>
		<description><![CDATA[Yesterday, I received an interesting question in a company where I&#8217;m a consultant. They wanted to find all file names in the source code of &#8220;XYZ&#8221; application without dots in their names so they were looking for the easiest way to do this task in GNU/LiNUX. I&#8217;ve never needed to do that kind of search [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I received an interesting question in a company where I&#8217;m a consultant. They wanted to find all file names in the source code of &#8220;XYZ&#8221; application without dots in their names so they were looking for the easiest way to do this task in GNU/LiNUX.</p>
<p>I&#8217;ve never needed to do that kind of search so I&#8217;ve recommended to read find command man page and use regular expressions. At home, I&#8217;ve found an nice way to do this task:</p>
<pre><code><strong>modlost@optimus:~/tmp$ </strong>mkdir -p testdir/1/2/3
<strong>modlost@optimus:~/tmp$ </strong>touch testdir/1/withoutdots
<strong>modlost@optimus:~/tmp$ </strong>touch testdir/1/2/with.dot
<strong>modlost@optimus:~/tmp$ </strong>touch testdir/1/2/3/withoutdots
<strong>modlost@optimus:~/tmp$ </strong>find testdir -type f -regex '[^.]*'
testdir/1/2/3/withoutdots
testdir/1/withoutdots
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.modlost.net/home/article/finding-file-names-without-dots-in-their-names.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
