<?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>Mi Vida con GNU/Linux &#187; Bash</title>
	<atom:link href="http://www.k4ch0.org/blog/tag/bash/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.k4ch0.org/blog</link>
	<description>Unix, Código, Software Libre, Geeks… Cervezas &#38; Tequila</description>
	<lastBuildDate>Mon, 23 Aug 2010 21:28:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Modificar la variable PATH</title>
		<link>http://www.k4ch0.org/blog/2010/04/14/modificar-la-variable-path/</link>
		<comments>http://www.k4ch0.org/blog/2010/04/14/modificar-la-variable-path/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 14:53:42 +0000</pubDate>
		<dc:creator>k4ch0</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.k4ch0.org/blog/?p=307</guid>
		<description><![CDATA[Fuente:Bash Reference Manual Cuando introducimos un comando en BASH el sistema busca un archivo con ese nombre en todos los directorios contenidos en la variable PATH. En caso de no encontrarlo se retorna un mensaje de error especificando que el comando no ha sido encontrado. Para saber los directorios contenidos en PATH debes escribir en]]></description>
		<wfw:commentRss>http://www.k4ch0.org/blog/2010/04/14/modificar-la-variable-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>¿Qué son los archivos FIFO?</title>
		<link>http://www.k4ch0.org/blog/2009/08/06/%c2%bfque-son-los-archivos-fifo/</link>
		<comments>http://www.k4ch0.org/blog/2009/08/06/%c2%bfque-son-los-archivos-fifo/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 03:53:58 +0000</pubDate>
		<dc:creator>k4ch0</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://www.k4ch0.org/blog/?p=248</guid>
		<description><![CDATA[FIFO es el acrónimo de First Input First Output (Primero que entra, primero que sale). En programación se usa dentro de las estructuras de datos. Partiendo de este echo, en UNIX existen una especie de ficheros que se utilizan para comunicar procesos, de modo que se puedan sincronizar e intercambiar información. El funcionamiento es bastante]]></description>
		<wfw:commentRss>http://www.k4ch0.org/blog/2009/08/06/%c2%bfque-son-los-archivos-fifo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bash a Colores (Estilo Gentoo)</title>
		<link>http://www.k4ch0.org/blog/2009/04/12/bash-a-colores-estilo-gentoo/</link>
		<comments>http://www.k4ch0.org/blog/2009/04/12/bash-a-colores-estilo-gentoo/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 19:02:26 +0000</pubDate>
		<dc:creator>k4ch0</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://www.k4ch0.org/blog/?p=58</guid>
		<description><![CDATA[Gentoo tiene un estilo con colores en Bash, si queremos tener el mismo esquema hay que seguir los siguientes pasos: Tenemos que crear un archivo de colores llamado ~/.dir_colors y le agregamos las siguientes lineas: # Configuration file for dircolors, a utility to help you set the # # LS_COLORS environment variable used by GNU]]></description>
		<wfw:commentRss>http://www.k4ch0.org/blog/2009/04/12/bash-a-colores-estilo-gentoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agregar Plugins a VIM para BASH, C y C++</title>
		<link>http://www.k4ch0.org/blog/2009/03/03/agregar-plugins-a-vim-para-bash-c-y-c/</link>
		<comments>http://www.k4ch0.org/blog/2009/03/03/agregar-plugins-a-vim-para-bash-c-y-c/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 01:52:42 +0000</pubDate>
		<dc:creator>k4ch0</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[VIM]]></category>

		<guid isPermaLink="false">http://www.k4ch0.org/blog/?p=25</guid>
		<description><![CDATA[Ahora agregaremos dos complementos para hacer de VIM nuestro IDE de BASH, C y C++: Bash-support Plugin Con el &#8220;Bash-support plugin&#8221; para VIM podremos automatizar tareas de edición que como programadores nos vemos obligados a repetir mucho: Añadir automáticamente cabeceras a los ficheros Añadir comentarios a de diversos tipos Escribir los esqueletos de los distintos]]></description>
		<wfw:commentRss>http://www.k4ch0.org/blog/2009/03/03/agregar-plugins-a-vim-para-bash-c-y-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- Dynamic Page Served (once) in 0.547 seconds -->
