<?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: Figuring out which files are touched while installing software</title>
	<atom:link href="http://blog.johnford.org/figuring-out-which-files-are-touched-while-installing-software/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.johnford.org/figuring-out-which-files-are-touched-while-installing-software/</link>
	<description>the things that I remembered to write about</description>
	<lastBuildDate>Sat, 04 Feb 2012 01:04:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Kent</title>
		<link>http://blog.johnford.org/figuring-out-which-files-are-touched-while-installing-software/comment-page-1/#comment-6264</link>
		<dc:creator>Kent</dc:creator>
		<pubDate>Sun, 30 Oct 2011 23:42:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.johnford.info/?p=223#comment-6264</guid>
		<description>Interesting insight on that code snippet, I would also have to agree why not just move the scratchbox into a new filesystem? It just seems more efficient to do it Mooks way.</description>
		<content:encoded><![CDATA[<p>Interesting insight on that code snippet, I would also have to agree why not just move the scratchbox into a new filesystem? It just seems more efficient to do it Mooks way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JimB</title>
		<link>http://blog.johnford.org/figuring-out-which-files-are-touched-while-installing-software/comment-page-1/#comment-3393</link>
		<dc:creator>JimB</dc:creator>
		<pubDate>Sat, 06 Mar 2010 08:32:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.johnford.info/?p=223#comment-3393</guid>
		<description>Nip it in the bud; use -prune.  Something like:

find -mount -type f -exec openssl md5 &#039;{}&#039; \; -wholename &#039;/builds/scratchbox&#039; -prune</description>
		<content:encoded><![CDATA[<p>Nip it in the bud; use -prune.  Something like:</p>
<p>find -mount -type f -exec openssl md5 &#8216;{}&#8217; \; -wholename &#8216;/builds/scratchbox&#8217; -prune</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mook</title>
		<link>http://blog.johnford.org/figuring-out-which-files-are-touched-while-installing-software/comment-page-1/#comment-3391</link>
		<dc:creator>Mook</dc:creator>
		<pubDate>Sat, 06 Mar 2010 07:10:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.johnford.info/?p=223#comment-3391</guid>
		<description>Wouldn&#039;t it have been easier to just move /builds/scratchbox into a different filesystem?  (In which case your find command would automatically skip it - and therefore not hash anything there.)  Presumably you were going to clobber the existing installs anyway (and therefore needed a tarball of a new root).

But then, it probably was all fast enough for you anyway ;)

(I wonder whether m.group(&#039;file&#039;).startswith(&quot;/builds/scratchbox/&quot;) would be faster or slower?  On the one hand, it&#039;s not re; on the other, it doesn&#039;t get a precompilation advantage...)</description>
		<content:encoded><![CDATA[<p>Wouldn&#8217;t it have been easier to just move /builds/scratchbox into a different filesystem?  (In which case your find command would automatically skip it &#8211; and therefore not hash anything there.)  Presumably you were going to clobber the existing installs anyway (and therefore needed a tarball of a new root).</p>
<p>But then, it probably was all fast enough for you anyway <img src='http://blog.johnford.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>(I wonder whether m.group(&#8216;file&#8217;).startswith(&#8220;/builds/scratchbox/&#8221;) would be faster or slower?  On the one hand, it&#8217;s not re; on the other, it doesn&#8217;t get a precompilation advantage&#8230;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony Mechelynck</title>
		<link>http://blog.johnford.org/figuring-out-which-files-are-touched-while-installing-software/comment-page-1/#comment-3384</link>
		<dc:creator>Tony Mechelynck</dc:creator>
		<pubDate>Fri, 05 Mar 2010 21:47:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.johnford.info/?p=223#comment-3384</guid>
		<description>Why not just

   diff -U 0 file-list1 file-list2 &#124; grep -vF /builds/scratchbox/

(or similar) to display just those differences that don&#039;t contain the string /builds/scratchbox/ ?</description>
		<content:encoded><![CDATA[<p>Why not just</p>
<p>   diff -U 0 file-list1 file-list2 | grep -vF /builds/scratchbox/</p>
<p>(or similar) to display just those differences that don&#8217;t contain the string /builds/scratchbox/ ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

