<?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: Linux Find and Argument List Too Long</title>
	<atom:link href="http://paulkortman.com/2009/01/14/linux-find-and-argument-list-too-long/feed/" rel="self" type="application/rss+xml" />
	<link>http://paulkortman.com/2009/01/14/linux-find-and-argument-list-too-long/</link>
	<description>Giving it all away for free!</description>
	<lastBuildDate>Mon, 23 Apr 2012 04:24:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: David Killingsworth</title>
		<link>http://paulkortman.com/2009/01/14/linux-find-and-argument-list-too-long/comment-page-1/#comment-3604</link>
		<dc:creator>David Killingsworth</dc:creator>
		<pubDate>Tue, 10 Apr 2012 11:44:05 +0000</pubDate>
		<guid isPermaLink="false">http://paulkortman.com/?p=54#comment-3604</guid>
		<description>Your method works if you want to find all files.  If you want to only find &quot;log&quot; files for example, use this:

Use the -name switch and you can match what you want.

$ find /home/username/Maildir/ -type f -name &quot;*.log&quot; -exec grep -l password &#039;{}&#039; \;</description>
		<content:encoded><![CDATA[<p>Your method works if you want to find all files.  If you want to only find &#8220;log&#8221; files for example, use this:</p>
<p>Use the -name switch and you can match what you want.</p>
<p>$ find /home/username/Maildir/ -type f -name &#8220;*.log&#8221; -exec grep -l password &#8216;{}&#8217; \;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nash</title>
		<link>http://paulkortman.com/2009/01/14/linux-find-and-argument-list-too-long/comment-page-1/#comment-1920</link>
		<dc:creator>nash</dc:creator>
		<pubDate>Sat, 07 May 2011 00:03:58 +0000</pubDate>
		<guid isPermaLink="false">http://paulkortman.com/?p=54#comment-1920</guid>
		<description>Cheers Mate! Helped heaps. I had written a script to run on a daily cron, to cull old jpgs in a samba share for a security camera.

Thanks for all the help, without bloggers like you whats the point of open source! Keep up the good work!

Nash</description>
		<content:encoded><![CDATA[<p>Cheers Mate! Helped heaps. I had written a script to run on a daily cron, to cull old jpgs in a samba share for a security camera.</p>
<p>Thanks for all the help, without bloggers like you whats the point of open source! Keep up the good work!</p>
<p>Nash</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Kortman</title>
		<link>http://paulkortman.com/2009/01/14/linux-find-and-argument-list-too-long/comment-page-1/#comment-775</link>
		<dc:creator>Paul Kortman</dc:creator>
		<pubDate>Fri, 14 May 2010 09:51:49 +0000</pubDate>
		<guid isPermaLink="false">http://paulkortman.com/?p=54#comment-775</guid>
		<description>George, I&#039;m happy to help, the find command is so powerful esp combined with the exec switch, I can&#039;t count how many scripts of mine rely on this combination nor how many times I use it in a typical day. I too had work arounds (manual) before finding this solution. 

Glad this post helped!</description>
		<content:encoded><![CDATA[<p>George, I&#8217;m happy to help, the find command is so powerful esp combined with the exec switch, I can&#8217;t count how many scripts of mine rely on this combination nor how many times I use it in a typical day. I too had work arounds (manual) before finding this solution. </p>
<p>Glad this post helped!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GiBu GeorGe</title>
		<link>http://paulkortman.com/2009/01/14/linux-find-and-argument-list-too-long/comment-page-1/#comment-774</link>
		<dc:creator>GiBu GeorGe</dc:creator>
		<pubDate>Sat, 27 Mar 2010 11:26:36 +0000</pubDate>
		<guid isPermaLink="false">http://paulkortman.com/?p=54#comment-774</guid>
		<description>Well Thanks for this.. I was trying to delete all mails from catch all (qmail rouge mails) which is 2 days old and i was hit with this error...

find /home/vpopmail/domains//Q/catchall/Maildir/new/* -mtime +2 -exec /bin/rm {} \; 

with in two days it would get populated up to 70 to 90 thousand mails (spammers like us) 

before this i had to do this manually now the cron works great... Thank You a Lot</description>
		<content:encoded><![CDATA[<p>Well Thanks for this.. I was trying to delete all mails from catch all (qmail rouge mails) which is 2 days old and i was hit with this error&#8230;</p>
<p>find /home/vpopmail/domains//Q/catchall/Maildir/new/* -mtime +2 -exec /bin/rm {} \; </p>
<p>with in two days it would get populated up to 70 to 90 thousand mails (spammers like us) </p>
<p>before this i had to do this manually now the cron works great&#8230; Thank You a Lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Kortman</title>
		<link>http://paulkortman.com/2009/01/14/linux-find-and-argument-list-too-long/comment-page-1/#comment-743</link>
		<dc:creator>Paul Kortman</dc:creator>
		<pubDate>Thu, 07 Jan 2010 17:36:46 +0000</pubDate>
		<guid isPermaLink="false">http://paulkortman.com/?p=54#comment-743</guid>
		<description>Steve, 

I&#039;m happy to help. We&#039;re all noobies at some stage. Those of us who blog about our mistakes just sounds like expert noobs!

Thanks for commenting, I know this post helps folks and I appreciate the feedback!</description>
		<content:encoded><![CDATA[<p>Steve, </p>
<p>I&#8217;m happy to help. We&#8217;re all noobies at some stage. Those of us who blog about our mistakes just sounds like expert noobs!</p>
<p>Thanks for commenting, I know this post helps folks and I appreciate the feedback!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://paulkortman.com/2009/01/14/linux-find-and-argument-list-too-long/comment-page-1/#comment-741</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 07 Jan 2010 17:02:21 +0000</pubDate>
		<guid isPermaLink="false">http://paulkortman.com/?p=54#comment-741</guid>
		<description>Thanks.
Find -name * bombed out when trying to clear out my clientmqueue directory (amateur mistake, I know), but your tip worked out!</description>
		<content:encoded><![CDATA[<p>Thanks.<br />
Find -name * bombed out when trying to clear out my clientmqueue directory (amateur mistake, I know), but your tip worked out!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

