﻿<?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>Jonathan López &#187; Bash</title>
	<atom:link href="http://preocupao.net/tag/bash/feed/" rel="self" type="application/rss+xml" />
	<link>http://preocupao.net</link>
	<description>Internet y software libre</description>
	<lastBuildDate>Thu, 09 Dec 2010 23:28:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Reiniciar linux sin el comando reboot</title>
		<link>http://preocupao.net/reiniciar-linux-sin-el-comando-reboot/</link>
		<comments>http://preocupao.net/reiniciar-linux-sin-el-comando-reboot/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 23:55:23 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Bash]]></category>

		<guid isPermaLink="false">http://www.preocupao.net/?p=110</guid>
		<description><![CDATA[Cómo realizar un reinicio forzoso en linux En ocasiones especiales, mas bien complicadas, es necesario reiniciar un equipo pero no están disponibles los binarios para tal efecto, como podría ser reboot. En ese caso tenemos una sencilla alternativa. Para realizar &#8230; <a href="http://preocupao.net/reiniciar-linux-sin-el-comando-reboot/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Cómo realizar un reinicio forzoso en linux</p>
<p>En ocasiones especiales, mas bien complicadas, es necesario reiniciar un equipo pero no están disponibles los binarios para tal efecto, como podría ser reboot. En ese caso tenemos una sencilla alternativa.</p>
<p>Para realizar un reinicio:</p>
<p><code>echo b &gt; /proc/sysrq-trigger</code></p>
<p>Para apagar el equipo:</p>
<p><code>echo o &gt; /proc/sysrq-trigger</code></p>
]]></content:encoded>
			<wfw:commentRss>http://preocupao.net/reiniciar-linux-sin-el-comando-reboot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Argument list too long</title>
		<link>http://preocupao.net/argument-list-too-long/</link>
		<comments>http://preocupao.net/argument-list-too-long/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 01:09:26 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Bash]]></category>

		<guid isPermaLink="false">http://www.preocupao.net/?p=19</guid>
		<description><![CDATA[After run rm -f * you get the error /bin/rm: Argument list too long Possible options: Use xargs. Xargs pass a list of arguments to a command. This deletes all the files listed: ls &#124;xargs rm Use find. You can &#8230; <a href="http://preocupao.net/argument-list-too-long/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After run rm -f * you get the error /bin/rm: Argument list too long</p>
<p>Possible options:</p>
<p>Use xargs. Xargs pass a list of arguments to a command. This deletes all the files listed:</p>
<p><code>ls |xargs rm</code></p>
<p>Use find. You can use the find command to make some actions with the found elements.</p>
<p><code>find . -exec rm {} \;</code></p>
<p>If you don´t remember any of the above options, always can remove the whole directory and create it again. Caution with the subfolders!</p>
]]></content:encoded>
			<wfw:commentRss>http://preocupao.net/argument-list-too-long/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

