<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Comments for Tech@Sakana - A sysadmin's blog</title>
	
	<link>http://www.sakana.fr/blog</link>
	<description>On the fly saving of few useful (?) tech tips</description>
	<lastBuildDate>Sun, 14 Mar 2010 18:14:57 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/sakana/comments" /><feedburner:info uri="sakana/comments" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Comment on Windows : Clear saved Windows networking passwords by mardy</title>
		<link>http://feedproxy.google.com/~r/sakana/comments/~3/bb8ZhlvKKqM/</link>
		<dc:creator>mardy</dc:creator>
		<pubDate>Sun, 14 Mar 2010 18:14:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.sakana.fr/blog/2007/02/27/windows-clear-saved-windows-networking-passwords/#comment-8431</guid>
		<description>control userpasswords2 in command prompt</description>
		<content:encoded><![CDATA[<p>control userpasswords2 in command prompt</p>
]]></content:encoded>
	<feedburner:origLink>http://www.sakana.fr/blog/2007/02/27/windows-clear-saved-windows-networking-passwords/comment-page-1/#comment-8431</feedburner:origLink></item>
	<item>
		<title>Comment on Perl : Counting occurences of IP addresses in Apache logs by Stephane Kattoor</title>
		<link>http://feedproxy.google.com/~r/sakana/comments/~3/98USi4xejMs/</link>
		<dc:creator>Stephane Kattoor</dc:creator>
		<pubDate>Sun, 14 Mar 2010 14:43:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.sakana.fr/blog/?p=408#comment-8430</guid>
		<description>Another case when the comments are worth more than the post itself ... Thanks to all :-D

Stephane</description>
		<content:encoded><![CDATA[<p>Another case when the comments are worth more than the post itself &#8230; Thanks to all <img src='http://www.sakana.fr/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p>Stephane</p>
]]></content:encoded>
	<feedburner:origLink>http://www.sakana.fr/blog/2010/03/02/perl-counting-occurences-of-ip-addresses-in-apache-logs/comment-page-1/#comment-8430</feedburner:origLink></item>
	<item>
		<title>Comment on Perl : Counting occurences of IP addresses in Apache logs by Matt Simmons</title>
		<link>http://feedproxy.google.com/~r/sakana/comments/~3/IzPIN7qUNGg/</link>
		<dc:creator>Matt Simmons</dc:creator>
		<pubDate>Thu, 11 Mar 2010 15:53:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.sakana.fr/blog/?p=408#comment-8416</guid>
		<description>dblackshell is really close. The problem is that the awk line doesn't sort. 

You need this: 

awk '{print $1}' access_log | sort | uniq -c | sort -g | tail -n 10</description>
		<content:encoded><![CDATA[<p>dblackshell is really close. The problem is that the awk line doesn&#8217;t sort. </p>
<p>You need this: </p>
<p>awk &#8216;{print $1}&#8217; access_log | sort | uniq -c | sort -g | tail -n 10</p>
]]></content:encoded>
	<feedburner:origLink>http://www.sakana.fr/blog/2010/03/02/perl-counting-occurences-of-ip-addresses-in-apache-logs/comment-page-1/#comment-8416</feedburner:origLink></item>
	<item>
		<title>Comment on Perl : Counting occurences of IP addresses in Apache logs by Stephane Kattoor</title>
		<link>http://feedproxy.google.com/~r/sakana/comments/~3/EhXIdCsnh3E/</link>
		<dc:creator>Stephane Kattoor</dc:creator>
		<pubDate>Tue, 09 Mar 2010 20:08:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.sakana.fr/blog/?p=408#comment-8405</guid>
		<description>Iain and dblackshell, thanks for your input !

Stephane</description>
		<content:encoded><![CDATA[<p>Iain and dblackshell, thanks for your input !</p>
<p>Stephane</p>
]]></content:encoded>
	<feedburner:origLink>http://www.sakana.fr/blog/2010/03/02/perl-counting-occurences-of-ip-addresses-in-apache-logs/comment-page-1/#comment-8405</feedburner:origLink></item>
	<item>
		<title>Comment on Perl : Counting occurences of IP addresses in Apache logs by dblackshell</title>
		<link>http://feedproxy.google.com/~r/sakana/comments/~3/clKPR9OBdnM/</link>
		<dc:creator>dblackshell</dc:creator>
		<pubDate>Mon, 08 Mar 2010 16:50:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.sakana.fr/blog/?p=408#comment-8392</guid>
		<description>awk '{ print $1 }' access.log | uniq -c</description>
		<content:encoded><![CDATA[<p>awk &#8216;{ print $1 }&#8217; access.log | uniq -c</p>
]]></content:encoded>
	<feedburner:origLink>http://www.sakana.fr/blog/2010/03/02/perl-counting-occurences-of-ip-addresses-in-apache-logs/comment-page-1/#comment-8392</feedburner:origLink></item>
	<item>
		<title>Comment on Perl : Counting occurences of IP addresses in Apache logs by Iain</title>
		<link>http://feedproxy.google.com/~r/sakana/comments/~3/bKPQQmxaulM/</link>
		<dc:creator>Iain</dc:creator>
		<pubDate>Sun, 07 Mar 2010 19:35:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.sakana.fr/blog/?p=408#comment-8386</guid>
		<description>{$_ . "\t-&gt;\t" . $c{$_} . "\n"}

-&gt;

{"$_\t-&gt;\t$c{$_}\n"}

That is all.</description>
		<content:encoded><![CDATA[<p>{$_ . &#8220;\t-&gt;\t&#8221; . $c{$_} . &#8220;\n&#8221;}</p>
<p>-&gt;</p>
<p>{&#8220;$_\t-&gt;\t$c{$_}\n&#8221;}</p>
<p>That is all.</p>
]]></content:encoded>
	<feedburner:origLink>http://www.sakana.fr/blog/2010/03/02/perl-counting-occurences-of-ip-addresses-in-apache-logs/comment-page-1/#comment-8386</feedburner:origLink></item>
	<item>
		<title>Comment on Perl+Twitter : Getting @mentions from command line by Scripting Twitter with cURL - Tech@Sakana – A sysadmin’s blog</title>
		<link>http://feedproxy.google.com/~r/sakana/comments/~3/bCfmlRNeYys/</link>
		<dc:creator>Scripting Twitter with cURL - Tech@Sakana – A sysadmin’s blog</dc:creator>
		<pubDate>Sat, 06 Mar 2010 10:31:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.sakana.fr/blog/?p=397#comment-8372</guid>
		<description>[...] Perl+Twitter : Getting @mentions from command line [...]</description>
		<content:encoded><![CDATA[<p>[...] Perl+Twitter : Getting @mentions from command line [...]</p>
]]></content:encoded>
	<feedburner:origLink>http://www.sakana.fr/blog/2010/01/24/perltwitter-getting-mentions-from-command-line/comment-page-1/#comment-8372</feedburner:origLink></item>
	<item>
		<title>Comment on Twitter : Send free SMS messages to your friends by Scripting Twitter with Perl + LWP - Tech@Sakana – A sysadmin’s blog</title>
		<link>http://feedproxy.google.com/~r/sakana/comments/~3/mYDKn49xiXE/</link>
		<dc:creator>Scripting Twitter with Perl + LWP - Tech@Sakana – A sysadmin’s blog</dc:creator>
		<pubDate>Sat, 06 Mar 2010 10:31:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.sakana.fr/blog/2007/03/17/twitter-send-free-sms-messages/#comment-8371</guid>
		<description>[...] Twitter : Send free SMS messages to your friends : now you can do this from the command line [...]</description>
		<content:encoded><![CDATA[<p>[...] Twitter : Send free SMS messages to your friends : now you can do this from the command line [...]</p>
]]></content:encoded>
	<feedburner:origLink>http://www.sakana.fr/blog/2007/03/17/twitter-send-free-sms-messages/comment-page-1/#comment-8371</feedburner:origLink></item>
	<item>
		<title>Comment on Scripting Twitter with cURL by Twitter : Send free SMS messages to your friends - Tech@Sakana – A sysadmin’s blog</title>
		<link>http://feedproxy.google.com/~r/sakana/comments/~3/DiDQ_NPBsKc/</link>
		<dc:creator>Twitter : Send free SMS messages to your friends - Tech@Sakana – A sysadmin’s blog</dc:creator>
		<pubDate>Sat, 06 Mar 2010 10:30:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.sakana.fr/blog/2007/03/18/scripting-twitter-with-curl/#comment-8370</guid>
		<description>[...] Scripting Twitter with cURL [...]</description>
		<content:encoded><![CDATA[<p>[...] Scripting Twitter with cURL [...]</p>
]]></content:encoded>
	<feedburner:origLink>http://www.sakana.fr/blog/2007/03/18/scripting-twitter-with-curl/comment-page-1/#comment-8370</feedburner:origLink></item>
	<item>
		<title>Comment on Twitter : Send free SMS messages to your friends by Perl+Twitter : Getting @mentions from command line - Tech@Sakana – A sysadmin’s blog</title>
		<link>http://feedproxy.google.com/~r/sakana/comments/~3/uQyznr36GD4/</link>
		<dc:creator>Perl+Twitter : Getting @mentions from command line - Tech@Sakana – A sysadmin’s blog</dc:creator>
		<pubDate>Sat, 06 Mar 2010 10:28:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.sakana.fr/blog/2007/03/17/twitter-send-free-sms-messages/#comment-8369</guid>
		<description>[...] Twitter : Send free SMS messages to your friends : now you can do this from the command line [...]</description>
		<content:encoded><![CDATA[<p>[...] Twitter : Send free SMS messages to your friends : now you can do this from the command line [...]</p>
]]></content:encoded>
	<feedburner:origLink>http://www.sakana.fr/blog/2007/03/17/twitter-send-free-sms-messages/comment-page-1/#comment-8369</feedburner:origLink></item>
</channel>
</rss><!-- Dynamic page generated in 0.807 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-03-14 20:23:23 -->
