<?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>Silveira Neto &#187; shell</title>
	<atom:link href="http://silveiraneto.net/tag/shell/feed/" rel="self" type="application/rss+xml" />
	<link>http://silveiraneto.net</link>
	<description>the world is a pixel</description>
	<lastBuildDate>Mon, 19 Jul 2010 21:59:29 +0000</lastBuildDate>
	<language>pt-br</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Congelando e Ressuscitando Processos</title>
		<link>http://silveiraneto.net/2009/11/14/congelando-e-resucitando-processos/</link>
		<comments>http://silveiraneto.net/2009/11/14/congelando-e-resucitando-processos/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 06:21:14 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
				<category><![CDATA[português]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[batman]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mr freeze]]></category>
		<category><![CDATA[pidof]]></category>
		<category><![CDATA[posix]]></category>
		<category><![CDATA[SH]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=2935</guid>
		<description><![CDATA[Nem só de morte vive o kill. Suponha que você tem um processo chamado program e quer congelar seu funcionamento. Para congela-lo sem mata-lo você pode mandar um sinal SIGSTOP com: kill -s stop `pidof program` Para ressuscitar o mesmo processo: kill -s cont `pidof program`]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-2936 aligncenter" title="batman mr freeze" src="http://silveiraneto.net/wp-content/uploads/2009/11/batman_mr_freeze.jpg" alt="batman mr freeze" width="374" height="253" /></p>
<p>Nem só de morte vive o kill.</p>
<p>Suponha que você tem um processo chamado <em>program</em> e quer congelar seu funcionamento. Para congela-lo sem mata-lo você pode mandar um sinal SIGSTOP com:</p>
<blockquote><p><span style="color: #000000;"><span style="color: #0163b3;"> </span>kill -s stop `pidof program`</span></p>
</blockquote>
<p><span style="color: #000000;">Para </span>ressuscitar o mesmo processo:</p>
<blockquote><p><span style="color: #000000;">kill -s cont `pidof program`</span></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2009/11/14/congelando-e-resucitando-processos/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creating a lot of thumbnails with Shell script</title>
		<link>http://silveiraneto.net/2008/09/25/creating-a-lot-of-thumbnails-with-shell-script/</link>
		<comments>http://silveiraneto.net/2008/09/25/creating-a-lot-of-thumbnails-with-shell-script/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 09:34:47 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[imagemagick]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[thumbnail]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=1310</guid>
		<description><![CDATA[This script create a thumbnail with width 100 of each png file in the actual directory. #!/bin/sh for i in *.png do echo &#34;convert -thumbnail 100 $i $i&#34; convert -thumbnail 100 $i $i done]]></description>
			<content:encoded><![CDATA[<p>This script create a thumbnail with width 100 of each png file in the actual directory.</p>
<div class="wp_syntax">
<div class="code">
<pre class="shell" style="font-family:monospace;">#!/bin/sh
for i in *.png
do
	echo &quot;convert -thumbnail 100 $i $i&quot;
	convert -thumbnail 100 $i $i
done</pre>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2008/09/25/creating-a-lot-of-thumbnails-with-shell-script/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
