<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	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/"
		>
<channel>
	<title>Comments on: Analyzing access logs to find patterns, or &#8220;Just how many bots are out there anyway?&#8221;: In which we give a gentle introduction to command-line tools.</title>
	<atom:link href="http://www.creative-workflow-hacks.com/2006/05/01/analyzing-access-logs-to-find-patterns-or-just-how-many-bots-are-out-there-anyway-in-which-we-give-a-gentle-introduction-to-command-line-tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.creative-workflow-hacks.com/2006/05/01/analyzing-access-logs-to-find-patterns-or-just-how-many-bots-are-out-there-anyway-in-which-we-give-a-gentle-introduction-to-command-line-tools/</link>
	<description>Sharing tips, scripts and hacks for your creative workflow.</description>
	<lastBuildDate>Tue, 13 Dec 2011 16:11:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: John</title>
		<link>http://www.creative-workflow-hacks.com/2006/05/01/analyzing-access-logs-to-find-patterns-or-just-how-many-bots-are-out-there-anyway-in-which-we-give-a-gentle-introduction-to-command-line-tools/comment-page-1/#comment-62575</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 01 Sep 2011 21:55:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.creative-workflow-hacks.com/2006/05/01/analyzing-access-logs-to-find-patterns-or-just-how-many-bots-are-out-there-anyway-in-which-we-give-a-gentle-introduction-to-command-line-tools/#comment-62575</guid>
		<description>For some reason, my single quotes got transformed into something else in my prior post.  Fix the single quotes around the {print $1} and it will work.</description>
		<content:encoded><![CDATA[<p>For some reason, my single quotes got transformed into something else in my prior post.  Fix the single quotes around the {print $1} and it will work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.creative-workflow-hacks.com/2006/05/01/analyzing-access-logs-to-find-patterns-or-just-how-many-bots-are-out-there-anyway-in-which-we-give-a-gentle-introduction-to-command-line-tools/comment-page-1/#comment-62574</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 01 Sep 2011 21:50:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.creative-workflow-hacks.com/2006/05/01/analyzing-access-logs-to-find-patterns-or-just-how-many-bots-are-out-there-anyway-in-which-we-give-a-gentle-introduction-to-command-line-tools/#comment-62574</guid>
		<description>Great post, sabernar.  I took your methods and came up with a nice way of seeing the most common IP addresses in an apache access log:


cat access_log &#124; awk &#039;{print $1}&#039; &#124; sort &#124; uniq -c &#124; sort -g</description>
		<content:encoded><![CDATA[<p>Great post, sabernar.  I took your methods and came up with a nice way of seeing the most common IP addresses in an apache access log:</p>
<p>cat access_log | awk &#8216;{print $1}&#8217; | sort | uniq -c | sort -g</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Meta: Interesting Access Logs at LaslowNET</title>
		<link>http://www.creative-workflow-hacks.com/2006/05/01/analyzing-access-logs-to-find-patterns-or-just-how-many-bots-are-out-there-anyway-in-which-we-give-a-gentle-introduction-to-command-line-tools/comment-page-1/#comment-52231</link>
		<dc:creator>Meta: Interesting Access Logs at LaslowNET</dc:creator>
		<pubDate>Fri, 11 Mar 2011 07:13:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.creative-workflow-hacks.com/2006/05/01/analyzing-access-logs-to-find-patterns-or-just-how-many-bots-are-out-there-anyway-in-which-we-give-a-gentle-introduction-to-command-line-tools/#comment-52231</guid>
		<description>[...] entirely happy with the results (top thirty visitors only), so a little Googling led me to this post about grabbing just the IP addresses from log files (I&#8217;m a little rusty on the finer points of grep and the like). After a little reading, I [...]</description>
		<content:encoded><![CDATA[<p>[...] entirely happy with the results (top thirty visitors only), so a little Googling led me to this post about grabbing just the IP addresses from log files (I&#8217;m a little rusty on the finer points of grep and the like). After a little reading, I [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AJi Prabowo</title>
		<link>http://www.creative-workflow-hacks.com/2006/05/01/analyzing-access-logs-to-find-patterns-or-just-how-many-bots-are-out-there-anyway-in-which-we-give-a-gentle-introduction-to-command-line-tools/comment-page-1/#comment-49040</link>
		<dc:creator>AJi Prabowo</dc:creator>
		<pubDate>Mon, 17 Jan 2011 14:09:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.creative-workflow-hacks.com/2006/05/01/analyzing-access-logs-to-find-patterns-or-just-how-many-bots-are-out-there-anyway-in-which-we-give-a-gentle-introduction-to-command-line-tools/#comment-49040</guid>
		<description>great resource!! rather than downloading our 500MB access_log file, tail-ing the log file with some filter to it has made my job finished quicker.

great job!!
thanks,
regards,
AJi</description>
		<content:encoded><![CDATA[<p>great resource!! rather than downloading our 500MB access_log file, tail-ing the log file with some filter to it has made my job finished quicker.</p>
<p>great job!!<br />
thanks,<br />
regards,<br />
AJi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Penguin Pete</title>
		<link>http://www.creative-workflow-hacks.com/2006/05/01/analyzing-access-logs-to-find-patterns-or-just-how-many-bots-are-out-there-anyway-in-which-we-give-a-gentle-introduction-to-command-line-tools/comment-page-1/#comment-34940</link>
		<dc:creator>Penguin Pete</dc:creator>
		<pubDate>Tue, 19 May 2009 23:43:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.creative-workflow-hacks.com/2006/05/01/analyzing-access-logs-to-find-patterns-or-just-how-many-bots-are-out-there-anyway-in-which-we-give-a-gentle-introduction-to-command-line-tools/#comment-34940</guid>
		<description>Very informative! I, too, use access logs from my site and the Linux command line in just this way. Always fun to figure out what the game is!</description>
		<content:encoded><![CDATA[<p>Very informative! I, too, use access logs from my site and the Linux command line in just this way. Always fun to figure out what the game is!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dr J</title>
		<link>http://www.creative-workflow-hacks.com/2006/05/01/analyzing-access-logs-to-find-patterns-or-just-how-many-bots-are-out-there-anyway-in-which-we-give-a-gentle-introduction-to-command-line-tools/comment-page-1/#comment-21909</link>
		<dc:creator>Dr J</dc:creator>
		<pubDate>Tue, 15 Jul 2008 23:56:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.creative-workflow-hacks.com/2006/05/01/analyzing-access-logs-to-find-patterns-or-just-how-many-bots-are-out-there-anyway-in-which-we-give-a-gentle-introduction-to-command-line-tools/#comment-21909</guid>
		<description>Excellent writeup.  A good refresher for some and hopefully it opens up the whole new world of the command line to others.</description>
		<content:encoded><![CDATA[<p>Excellent writeup.  A good refresher for some and hopefully it opens up the whole new world of the command line to others.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

