<?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>Jorgelig Blog</title>
	<atom:link href="http://www.jorgelig.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jorgelig.com</link>
	<description>Jorgelig Blog, mi lado Friki al natural...</description>
	<lastBuildDate>Tue, 17 Jan 2012 17:13:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom:link rel='hub' href='http://www.jorgelig.com/?pushpress=hub'/>
		<item>
		<title>Jorgelig Blog se une al apagon anti-SOPA</title>
		<link>http://www.jorgelig.com/2012/01/17/jorgelig-blog-anti-sop/</link>
		<comments>http://www.jorgelig.com/2012/01/17/jorgelig-blog-anti-sop/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 17:13:43 +0000</pubDate>
		<dc:creator>Jorgelig</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.jorgelig.com/?p=1012</guid>
		<description><![CDATA[Jorgelig Blog se une al apagon anti-SOPA


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div id=HOTWordsTxt name=HOTWordsTxt><p>Estimados lectores Jorgelig Blog a partir del día 18 del presente mes estará suspendido en apoyo al apagon anti-SOPA. Si tienes un blog basado en wordpress y quieres unirte puedes descargar este bonito plugin: <a href="http://wordpress.org/extend/plugins/sopa-blackout-plugin/" target="_blank">SOPA Blackout Plugin</a>. Si no sabes que es la iniciativa SOPA te recomiendo leer <a href="http://www.maestrosdelweb.com/editorial/que-es-la-ley-sopa/" target="_blank">este articulo en Maestros del Web</a></p>
<p><img src="http://i.imgur.com/oPrjxl.jpg" alt="SOPA" /></p>
<p>Le pedimos una disculpa y lamentamos los inconvenientes que las empresas que promueven la ley SOPA pueda causarle U_U</p>
</div>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jorgelig.com/2012/01/17/jorgelig-blog-anti-sop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Fix] HttpHandler registration in the web.config file</title>
		<link>http://www.jorgelig.com/2011/11/07/fix-httphandler-registration-in-the-web-config-file/</link>
		<comments>http://www.jorgelig.com/2011/11/07/fix-httphandler-registration-in-the-web-config-file/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 14:00:13 +0000</pubDate>
		<dc:creator>Jorgelig</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.jorgelig.com/?p=911</guid>
		<description><![CDATA[En teoria al arrastrar un componente de telerik a la pagina deberian agregarse las referencias en web.config, pero por alguna extraña razon aveces no lo hace y al intentar ver la pagina marca este error: &#8220;HttpHandler registration in the web.config&#8221;; solo hay que ir al web.config y agregar esta linea de código, así de facil: [...]


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div id=HOTWordsTxt name=HOTWordsTxt><p>En teoria al arrastrar un componente de telerik a la pagina deberian agregarse las referencias en web.config, pero por alguna extraña razon aveces no lo hace y al intentar ver la pagina marca este error: &#8220;HttpHandler registration in the web.config&#8221;; solo hay que ir al web.config y agregar esta linea de código, así de facil:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;system.webServer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span> 
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;handlers<span style="color: #000000; font-weight: bold;">&gt;</span></span></span> 
    …  
      <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;add</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;Telerik.Web.UI.DialogHandler&quot;</span> <span style="color: #000066;">path</span>=<span style="color: #ff0000;">&quot;Telerik.Web.UI.DialogHandler.aspx&quot;</span> <span style="color: #000066;">verb</span>=<span style="color: #ff0000;">&quot;*&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;Telerik.Web.UI.DialogHandler, Telerik.Web.UI&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span> 
    …  
   <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/handlers<span style="color: #000000; font-weight: bold;">&gt;</span></span></span> 
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/system.webServer<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Fuente | <a href="http://www.telerik.com/support/kb/aspnet-ajax/editor/error-web-config-registration-missing-the-telerik-dialogs-require-a-httphandler-registration-in-the-web-config-file.aspx" target="_blank">Telerik support</a></p>
</div>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jorgelig.com/2011/11/07/fix-httphandler-registration-in-the-web-config-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ejemplo sencillo de jQote2</title>
		<link>http://www.jorgelig.com/2011/11/06/ejemplo-sencillo-de-jqote2/</link>
		<comments>http://www.jorgelig.com/2011/11/06/ejemplo-sencillo-de-jqote2/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 19:10:33 +0000</pubDate>
		<dc:creator>Jorgelig</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Programacion]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[callback]]></category>
		<category><![CDATA[hasmap]]></category>
		<category><![CDATA[jQote2]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.jorgelig.com/?p=962</guid>
		<description><![CDATA[jQote es un plugin para llenar plantillas con objetos JSON, este es un sencillo ejemplo usando jQote para llenar una plantilla previamnte guardada en un hashmap.


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div id=HOTWordsTxt name=HOTWordsTxt><p>jQote es según esta gráfica uno de los mas rápidos, una de las razones por las que decidimos por usarlo.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://aefxx.com/wp-content/uploads/2010/03/jqote.benchmarks.png" alt="Comparativa" width="576" height="255" /></p>
<p>Para este ejemplo usaremos un template previamente cargado en hashmap y no un elemento del DOM, el markup es el siguiente:<br />
<script type="text/javascript" src="https://gist.github.com/1339931.js?file=AgentNavigation.htm"></script>Hacemos la peticion al servicio:<script type="text/javascript" src="https://gist.github.com/1339931.js?file=svc.js"></script><br />
Lo que nos debe regresar un objeto JSON, en el ejemplo los datos del JSON A usar estan dentro de &#8220;result.data&#8221;:<br />
<script type="text/javascript" src="https://gist.github.com/1339931.js?file=JSON%20Response"></script>Ahora simplemente llenamos el template, que esta previametne cargado en un hashmap, para accesar a una propiedad o meter codigo dentro del template debemos hacerlo entre los simbolos &lt;% %&gt;:<script type="text/javascript" src="https://gist.github.com/1339931.js?file=ui.js"></script></p>
<p>jQote2 | <a title="API reference" href="http://aefxx.com/api/jqote2-reference/" target="_blank">API documentation</a><br />
Archivos ejemplo | <a title="Download" href="https://gist.github.com/1339931" target="_blank">Download</a></p>
</div>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jorgelig.com/2011/11/06/ejemplo-sencillo-de-jqote2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Abrir folder in Windows Explorer desde eclipse</title>
		<link>http://www.jorgelig.com/2011/11/03/open-in-windows-explorer-eclipse/</link>
		<comments>http://www.jorgelig.com/2011/11/03/open-in-windows-explorer-eclipse/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 10:00:08 +0000</pubDate>
		<dc:creator>Jorgelig</dc:creator>
				<category><![CDATA[Programacion]]></category>

		<guid isPermaLink="false">http://www.jorgelig.com/?p=873</guid>
		<description><![CDATA[Tip para abrir el explorador de windows en una carpeta especifica del workspace desde eclipse


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div id=HOTWordsTxt name=HOTWordsTxt><p>En el menu contextual(clic derecho) del explorador de la solución de Visual Studio se puede abrir el explorador de windows directamente en la ubicacion de un folder, algo que aveces es util y eclipse no tiene, pero se puede configurar:</p>
<ol>
<li>Ir al menu Run-&gt;External Tools-&gt;Open External Tools Dialog&#8230;<img class="aligncenter size-medium wp-image-944" title="OpenExternal" src="http://www.jorgelig.com/wp-content/uploads/2010/12/eclipseConfiguration-290x300.png" alt="" width="290" height="300" /></li>
<li>Agregar una configuracion donde Location apunta a explorer.exe con los argumentos &#8220;/n,/e,${container_loc}&#8221; y listo</li>
</ol>
<p><a href="http://www.jorgelig.com/wp-content/uploads/2010/12/EclipseOpenExplorerConfiguration.png"><img class="aligncenter size-medium wp-image-945" title="EclipseOpenExplorerConfiguration" src="http://www.jorgelig.com/wp-content/uploads/2010/12/EclipseOpenExplorerConfiguration-300x267.png" alt="" width="300" height="267" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jorgelig.com/2011/11/03/open-in-windows-explorer-eclipse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Fix] Not enough storage is available to complete this operation.</title>
		<link>http://www.jorgelig.com/2011/11/02/fix-not-enough-storage-is-available-to-complete-this-operation/</link>
		<comments>http://www.jorgelig.com/2011/11/02/fix-not-enough-storage-is-available-to-complete-this-operation/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 08:17:41 +0000</pubDate>
		<dc:creator>Jorgelig</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jorgelig.com/?p=951</guid>
		<description><![CDATA[Hace unos dias me salia este error al intentar compilar una solucion con varios proyectos, por lo que el fix era cerrar Visual Studio y volverlo a abrir. El error hace referencia a una falta de espacio en memoria RAM, la PC del trabajo es una Core i5 con 4Gb de RAM y aun cuando [...]


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div id=HOTWordsTxt name=HOTWordsTxt><p>Hace unos dias me salia este error al intentar compilar una solucion con varios proyectos, por lo que el fix era cerrar Visual Studio y volverlo a abrir. El error hace referencia a una falta de espacio en memoria RAM, la PC del trabajo es una Core i5 con 4Gb de RAM y aun cuando esta corriendo SQL Server, IIS, etc&#8230; casi siempre tenia mas de 1Gb disponible en RAM.</p>
<p>El hack/Fix es obligar a que VS use mas memoria de la que tiene configurada por default, solo hay que siguir estos pasos:</p>
<ol>
<li>Con permisos de Administrador abrir &#8220;Visual Studio command prompt &#8221; <a href="http://www.jorgelig.com/wp-content/uploads/2011/11/VisualStudioCommandPrompt.png"><img class="aligncenter size-full wp-image-956" title="VisualStudioCommandPrompt" src="http://www.jorgelig.com/wp-content/uploads/2011/11/VisualStudioCommandPrompt.png" alt="" width="491" height="702" /></a></li>
<li>ejecutar:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">BCDEDIT <span style="color: #000000; font-weight: bold;">/</span>Set IncreaseUserVa <span style="color: #000000;">2560</span></pre></div></div>

<p>en mi caso le asigne 2.5Gb. Despues de ejecutar debe aparecer el mensaje: &#8220;The operation completed successfully&#8221;</li>
<li>Hacer un respaldo de &#8220;devenv.exe&#8221;</li>
<li>Desde &#8220;Visual Studio command prompt&#8221; en la carpeta &#8220;IDE&#8221; de tu respectiva version de VS, en mi caso [C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE] ejecutar:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">editbin <span style="color: #000000; font-weight: bold;">/</span>LARGEADDRESSAWARE devenv.exe</pre></div></div>

</li>
<li>Reiniciamos y listo <img src='http://www.jorgelig.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </li>
</ol>
<div>Fuente | <a title="StevenHarman Blog" href="http://stevenharman.net/blog/archive/2008/04/29/hacking-visual-studio-to-use-more-than-2gigabytes-of-memory.aspx" target="_blank">StevenHarman Blog</a></div>
</div>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jorgelig.com/2011/11/02/fix-not-enough-storage-is-available-to-complete-this-operation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error locating JDK: set $JAVA_HOME or put javac and jarsigner on your $PATH</title>
		<link>http://www.jorgelig.com/2011/11/01/error-locating-jdk-set-java_home-or-put-javac-and-jarsigner-on-your-path/</link>
		<comments>http://www.jorgelig.com/2011/11/01/error-locating-jdk-set-java_home-or-put-javac-and-jarsigner-on-your-path/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 13:00:43 +0000</pubDate>
		<dc:creator>Jorgelig</dc:creator>
				<category><![CDATA[Programacion]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WebTip]]></category>

		<guid isPermaLink="false">http://www.jorgelig.com/?p=929</guid>
		<description><![CDATA[Fix para el error: Error locating JDK: set $JAVA_HOME or put javac and jarsigner on your $PATH


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div id=HOTWordsTxt name=HOTWordsTxt><p>Desde hace rato que instale el Appcelerator y traia ganas de hacer unas pruebas con un hola mundo Android pero por falta de tiempo siempre lo pospongo, resulta que ya instale el JDK y Titanium Studio me dice que no encuentra el JDK, buscando un ratito encontre este fix para windows:</p>
<ol>
<li>Ir a variables de Entorno [Clic derecho Mi PC-&gt;Propiedades...Configuracion Avanzada del sistema-&gt;Variables de Entorno...]</li>
<li>Seleccionar la variable de entorno &#8220;path&#8221; y editar&#8230;</li>
<li>Agregar un &#8220;;&#8221; (sin comillas ¬¬ ) y poner el path del JDK, en mi caso: &#8220;C:\Program Files (x86)\Java\jdk1.7.0_01\bin&#8221;</li>
<li>Cerrar las ventanas y reiniciar  Titanium Studio.</li>
</ol>
<div>Fuente | <a title="Foro Appcelerator" href="http://developer.appcelerator.com/question/21091/error-error-locating-jdk-set-javahome-or-put-javac-and-jarsigner-on-your-path" target="_blank">Foro Appcelerator</a></div>
<p>&nbsp;</p>
</div>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jorgelig.com/2011/11/01/error-locating-jdk-set-java_home-or-put-javac-and-jarsigner-on-your-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compilar proyecto en el servidor sin usar Visual Studio</title>
		<link>http://www.jorgelig.com/2011/10/31/compilar-proyecto-en-el-servidor-sin-usar-visual-studio/</link>
		<comments>http://www.jorgelig.com/2011/10/31/compilar-proyecto-en-el-servidor-sin-usar-visual-studio/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 19:40:14 +0000</pubDate>
		<dc:creator>Jorgelig</dc:creator>
				<category><![CDATA[Programacion]]></category>

		<guid isPermaLink="false">http://www.jorgelig.com/?p=897</guid>
		<description><![CDATA[Pequeño tip para compilar un projecto sin usar Visual Studio.


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div id=HOTWordsTxt name=HOTWordsTxt><p>Se &#8220;supone&#8221; que antes de liberar un cambio a producción debe compilarse y probarse en ambiente &#8220;developer&#8221;, pero aveces es necesario compilar el proyecto directamente en producción [uuuuuuuuuh que mello,*zape  monkey developer malo malo U_U ]; En una consola vamos a la ruta donde esta instalado el Framework correspondiente al de la aplicacion y ejecutamos msbuild dandole de parametro el archivo *.vbproj de nuestro respectivo proyecto:</p>
<p>C:\Windows\Microsoft.NET\Framework\v4.0.30319&gt;<br />
msbuild /property:Configuration=Release MyFile.vbproj</p>
</div>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jorgelig.com/2011/10/31/compilar-proyecto-en-el-servidor-sin-usar-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RadScriptManager vs ScriptManager</title>
		<link>http://www.jorgelig.com/2011/07/21/radscriptmanager-vs-scriptmanager/</link>
		<comments>http://www.jorgelig.com/2011/07/21/radscriptmanager-vs-scriptmanager/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 17:15:37 +0000</pubDate>
		<dc:creator>Jorgelig</dc:creator>
				<category><![CDATA[Programacion]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[ASPX]]></category>
		<category><![CDATA[Optimizacion]]></category>
		<category><![CDATA[Telerik]]></category>

		<guid isPermaLink="false">http://www.jorgelig.com/?p=913</guid>
		<description><![CDATA[Comparativa entre RadScriptManager y el ScriptManager.


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div id=HOTWordsTxt name=HOTWordsTxt><p>Estamos probando los controles de Telerik en el trabajo y recien cambiamos el ScriptManager de .NET por el RadScriptManager que es la version de Telerik, y me lleve una buena sorpresa:</p>
<p>El RadScriptManager optimiza el numero de Reource que mete en las paginas, lo que impacta en menos request y mucho menos archivos que bajar. Esto nos optimiza ancho de banda y tiempos de carga de la pagina. Les dejo un screenshot(clic para ver tamaño completo):</p>
<p style="text-align: center;"><a title="Ver Tamaño Completo" rel="http://www.jorgelig.com/wp-content/uploads/2011/07/ScriptManager-vs-RadScriptManager.png" href="http://www.jorgelig.com/wp-content/uploads/2011/07/ScriptManager-vs-RadScriptManager.png" target="_blank"><img class="aligncenter size-full wp-image-914" title="ScriptManager vs RadScriptManager" src="http://www.jorgelig.com/wp-content/uploads/2011/07/ScriptManager-vs-RadScriptManager.png" alt="" width="600" height="400" /></a></p>
</div>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jorgelig.com/2011/07/21/radscriptmanager-vs-scriptmanager/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tip para dividir y unir archivos en Linux desde consola</title>
		<link>http://www.jorgelig.com/2010/11/01/tip-para-dividir-y-unir-archivos-en-linux-desde-consola/</link>
		<comments>http://www.jorgelig.com/2010/11/01/tip-para-dividir-y-unir-archivos-en-linux-desde-consola/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 14:01:46 +0000</pubDate>
		<dc:creator>Jorgelig</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://jorgelig.la100rra.com.mx/?p=616</guid>
		<description><![CDATA[Tip para dividir y unir archivos en Linux desde consola


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div id=HOTWordsTxt name=HOTWordsTxt><p>Tan sencillo como esto:</p>
<p><strong>Para dividir en archivos de 100 Mb:</strong><br />
split -b 100m archivo prefijo<br />
<strong>Para unir:</strong><br />
cat prefijo* > archivo</p>
</div>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jorgelig.com/2010/11/01/tip-para-dividir-y-unir-archivos-en-linux-desde-consola/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Agregar caracteres al principio y final de cada linea de un archivo en Linux</title>
		<link>http://www.jorgelig.com/2010/10/31/agregar-caracteres-al-principio-y-final-de-cada-linea-de-un-archivo-en-linux/</link>
		<comments>http://www.jorgelig.com/2010/10/31/agregar-caracteres-al-principio-y-final-de-cada-linea-de-un-archivo-en-linux/#comments</comments>
		<pubDate>Sun, 31 Oct 2010 13:56:57 +0000</pubDate>
		<dc:creator>Jorgelig</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.jorgelig.com/?p=757</guid>
		<description><![CDATA[Tip para Linux desde consola para agregar caracteres al principio y al final de cada linea de un archivo de texto


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div id=HOTWordsTxt name=HOTWordsTxt><p>Pasando un cvs a sql necesitaba agregar al principio de cada linea un paréntesis de apertura, y un paréntesis de cierre al final de cada linea, el problema es que era un archivo de mas de 150,000 lineas. En este caso necesitaba agregar un parentesis de apertura al principio de la linea y un parentesis de cierre al final de la linea, </p>
<pre class="alt2">awk '{ print "(", $0, ")" } ' inputfilename&gt; tmp.tmp</pre>
</div>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jorgelig.com/2010/10/31/agregar-caracteres-al-principio-y-final-de-cada-linea-de-un-archivo-en-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

