<?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>numlock.ch - a changelog by Daniel Mettler &#187; wordlist</title>
	<atom:link href="http://www.numlock.ch/news/tag/wordlist/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.numlock.ch/news</link>
	<description>make a diff :)</description>
	<lastBuildDate>Thu, 12 Aug 2010 07:45:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Bash script of the day: New .de domains</title>
		<link>http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/</link>
		<comments>http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 15:05:25 +0000</pubDate>
		<dc:creator>mettlerd</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[.de]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Deutschland]]></category>
		<category><![CDATA[dict]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[germany]]></category>
		<category><![CDATA[registration]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[wordlist]]></category>

		<guid isPermaLink="false">http://www.numlock.ch/news/?p=786</guid>
		<description><![CDATA[The one-liner:
for i in `echo {{a..z},{0..9}};echo {{a..z},{0..9}}{{a..z},{0..9}}`;do dict -d all -C ${i}de&#62;/dev/null 2&#62;&#38;1; if [ "$?" == "0" ];then echo $i.de; fi done
or the equivalent multi-liner:
for i in `echo {{a..z},{0..9}};echo {{a..z},{0..9}}{{a..z},{0..9}}`;
  do
    dict -d all -C ${i}de &#62;/dev/null 2&#62;&#38;1;
    if [ "$?" == "0" ]; then
   [...]]]></description>
			<content:encoded><![CDATA[<p>The one-liner:</p>
<pre>for i in `echo {{a..z},{0..9}};echo {{a..z},{0..9}}{{a..z},{0..9}}`;do dict -d all -C ${i}de&gt;/dev/null 2&gt;&amp;1; if [ "$?" == "0" ];then echo $i.de; fi done</pre>
<p>or the equivalent multi-liner:</p>
<pre>for i in `echo {{a..z},{0..9}};echo {{a..z},{0..9}}{{a..z},{0..9}}`;
  do
    dict -d all -C ${i}de &gt;/dev/null 2&gt;&amp;1;
    if [ "$?" == "0" ]; then
      echo $i.de;
    fi
  done</pre>
<p>No comment (*cough*)</p>
<p>(P.S. That&#8217;s for ASCII alphanumeric domains only)</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;t=Bash+script+of+the+day%3A+New+.de+domains" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;title=Bash+script+of+the+day%3A+New+.de+domains" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Bash+script+of+the+day%3A+New+.de+domains+-+http://tinyurl.com/ykayw5j&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Bash+script+of+the+day%3A+New+.de+domains&amp;body=Link: http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20one-liner%3A%0D%0Afor%20i%20in%20%60echo%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%3Becho%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%7B%7Ba..z%7D%2C%7B0..9%7D%7D%60%3Bdo%20dict%20-d%20all%20-C%20%24%7Bi%7Dde%26gt%3B%2Fdev%2Fnull%202%26gt%3B%26amp%3B1%3B%20if%20%5B%20%22%24%3F%22%20%3D%3D%20%220%22%20%5D%3Bthen%20echo%20%24i.de%3B%20fi%20done%0D%0Aor%20the%20equivalent%20multi-liner%3A%0D%0Afor%20i%20in%20%60echo%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%3Becho%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%7B%7Ba..z%7D%2C%7B0..9%7D%7D%60%3B%0D%0A%20%20do%0D%0A%20%20%20%20dict%20-d%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;title=Bash+script+of+the+day%3A+New+.de+domains" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;t=Bash+script+of+the+day%3A+New+.de+domains" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;t=Bash+script+of+the+day%3A+New+.de+domains" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;title=Bash+script+of+the+day%3A+New+.de+domains&amp;selection=The%20one-liner%3A%0D%0Afor%20i%20in%20%60echo%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%3Becho%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%7B%7Ba..z%7D%2C%7B0..9%7D%7D%60%3Bdo%20dict%20-d%20all%20-C%20%24%7Bi%7Dde%26gt%3B%2Fdev%2Fnull%202%26gt%3B%26amp%3B1%3B%20if%20%5B%20%22%24%3F%22%20%3D%3D%20%220%22%20%5D%3Bthen%20echo%20%24i.de%3B%20fi%20done%0D%0Aor%20the%20equivalent%20multi-liner%3A%0D%0Afor%20i%20in%20%60echo%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%3Becho%20%7B%7Ba..z%7D%2C%7B0..9%7D%7D%7B%7Ba..z%7D%2C%7B0..9%7D%7D%60%3B%0D%0A%20%20do%0D%0A%20%20%20%20dict%20-d%20" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;title=Bash+script+of+the+day%3A+New+.de+domains" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/&amp;title=Bash+script+of+the+day%3A+New+.de+domains" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/+&quot;Bash+script+of+the+day%3A+New+.de+domains&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.numlock.ch/news/it/bash-scrip-of-the-day-new-de-domains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
