<?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>Penguins in a Strange Land &#187; shell</title>
	<atom:link href="http://strange.nsk.pt/tag/shell/feed/" rel="self" type="application/rss+xml" />
	<link>http://strange.nsk.pt</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 26 Jul 2010 12:29:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>shell tip: check if private key matches public certificate</title>
		<link>http://strange.nsk.pt/2009/09/shell-tip-check-if-private-key-matches-public-certificate/</link>
		<comments>http://strange.nsk.pt/2009/09/shell-tip-check-if-private-key-matches-public-certificate/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 14:22:23 +0000</pubDate>
		<dc:creator>luciano</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[openssl]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[tls]]></category>

		<guid isPermaLink="false">http://strange.nsk.pt/2009/09/shell-tip-check-if-private-key-matches-public-certificate/</guid>
		<description><![CDATA[Compare the output of the following two lines. They must match:
$ openssl x509 -noout -modulus -in server.pem &#124; openssl md5
$  openssl rsa -noout -modulus -in server.key &#124; openssl md5
]]></description>
			<content:encoded><![CDATA[<p>Compare the output of the following two lines. They must match:<br />
<code>$ openssl x509 -noout -modulus -in server.pem | openssl md5<br />
$  openssl rsa -noout -modulus -in server.key | openssl md5</code></p>
]]></content:encoded>
			<wfw:commentRss>http://strange.nsk.pt/2009/09/shell-tip-check-if-private-key-matches-public-certificate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>shell tip: finding lines in file a not in file b</title>
		<link>http://strange.nsk.pt/2009/09/shell-tip-finding-lines-in-file-a-not-in-file-b/</link>
		<comments>http://strange.nsk.pt/2009/09/shell-tip-finding-lines-in-file-a-not-in-file-b/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 14:19:04 +0000</pubDate>
		<dc:creator>luciano</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://strange.nsk.pt/2009/09/shell-tip-finding-lines-in-file-a-not-in-file-b/</guid>
		<description><![CDATA[$ sort a &#60;(sed -e p b) &#124; uniq -u
Meaning: list unique lines in (contents of file &#8216;a&#8217; plus duplicated contents of file &#8216;b&#8217;). &#8217;sort&#8217; is required for &#8216;uniq&#8217; to work.
]]></description>
			<content:encoded><![CDATA[<p><code>$ sort a &lt;(sed -e p b) | uniq -u</code><br />
Meaning: list unique lines in (contents of file &#8216;a&#8217; plus duplicated contents of file &#8216;b&#8217;). &#8217;sort&#8217; is required for &#8216;uniq&#8217; to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://strange.nsk.pt/2009/09/shell-tip-finding-lines-in-file-a-not-in-file-b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
