<?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; cmd</title>
	<atom:link href="http://silveiraneto.net/tag/cmd/feed/" rel="self" type="application/rss+xml" />
	<link>http://silveiraneto.net</link>
	<description></description>
	<lastBuildDate>Fri, 09 Mar 2012 04:13:27 +0000</lastBuildDate>
	<language>pt-br</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Getting an Android app source</title>
		<link>http://silveiraneto.net/2010/03/18/getting-an-android-app-source/</link>
		<comments>http://silveiraneto.net/2010/03/18/getting-an-android-app-source/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 03:00:18 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[branch]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=3239</guid>
		<description><![CDATA[<a href="http://silveiraneto.net/2010/03/18/getting-an-android-app-source/" title="Getting an Android app source"></a>Getting the Android&#8217;s AlarmClock application source from official repositories: git clone git://android.git.kernel.org/platform/packages/apps/AlarmClock.git To get the head version for an old platform like the 1.4 (codename donut), choose the correspondent branch using -o or &#8211;origin: git clone git://android.git.kernel.org/platform/packages/apps/AlarmClock.git --origin donut]]></description>
			<content:encoded><![CDATA[<a href="http://silveiraneto.net/2010/03/18/getting-an-android-app-source/" title="Getting an Android app source"></a><p style="text-align: center;"><img class="size-full wp-image-3236 aligncenter" title="Donut" src="http://silveiraneto.net/wp-content/uploads/2010/03/460307409_4e78c5dae4_flickr_donut.jpg" alt="" width="500" height="380" /></p>
<p>Getting the Android&#8217;s AlarmClock application source from official repositories:</p>
<pre>git clone git://android.git.kernel.org/platform/packages/apps/AlarmClock.git</pre>
<p>To get the head version for an old platform like the 1.4 (codename donut), choose the correspondent branch using -o or &#8211;origin:</p>
<pre>git clone git://android.git.kernel.org/platform/packages/apps/AlarmClock.git --origin donut</pre>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2010/03/18/getting-an-android-app-source/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<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[<a href="http://silveiraneto.net/2009/11/14/congelando-e-resucitando-processos/" title="Congelando e Ressuscitando Processos"></a>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 &#8230;<p class="read-more"><a href="http://silveiraneto.net/2009/11/14/congelando-e-resucitando-processos/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://silveiraneto.net/2009/11/14/congelando-e-resucitando-processos/" title="Congelando e Ressuscitando Processos"></a><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>
	</channel>
</rss>

