<?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: Mac OSX Tips</title>
	<atom:link href="http://www.sanneblad.com/about/mac-osx-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sanneblad.com</link>
	<description>Mobile trends and thoughts</description>
	<lastBuildDate>Fri, 03 Sep 2010 14:16:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Marius van Witzenburg</title>
		<link>http://www.sanneblad.com/about/mac-osx-tips/comment-page-1/#comment-245</link>
		<dc:creator>Marius van Witzenburg</dc:creator>
		<pubDate>Fri, 30 Jul 2010 18:56:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.sanneblad.com/?page_id=104#comment-245</guid>
		<description>Oh, my bad Johan...

find . -name .DS_Store -type f

This should do the trick, the asterisk is not needed since the file starts with a dot, also you do not have to quote the name. This is only required if you use the asterisk.</description>
		<content:encoded><![CDATA[<p>Oh, my bad Johan&#8230;</p>
<p>find . -name .DS_Store -type f</p>
<p>This should do the trick, the asterisk is not needed since the file starts with a dot, also you do not have to quote the name. This is only required if you use the asterisk.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: johan</title>
		<link>http://www.sanneblad.com/about/mac-osx-tips/comment-page-1/#comment-179</link>
		<dc:creator>johan</dc:creator>
		<pubDate>Tue, 29 Jun 2010 21:33:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.sanneblad.com/?page_id=104#comment-179</guid>
		<description>Hi Marius,

About DS_Store: Very weird.

If I type like I wrote on this page:
find . -name *.DS_Store -type f
I get a list of all .DS_Store files. It works just fine for me on Mac OSX 10.5 and 10.6.

If I instead type like you suggested:
find . -name ‘*.DS_Store’ -type f 
I get no results

Regarding Spotlight. What I use it for is to enable searching within a specific DMG file, not all DMG files. In my case I store my Mail data, Adium and Skype data inside an encrypted DMG file and have linked the regular folders to folders within this DMG file. To be able to search emails then in Mail I have to enable Spotlight indexing inside this specific DMG file. So my tip won&#039;t enable Spotlight to index all DMG files, it will just enable indexing of a specific DMG file used for user data.

Cheers
Johan</description>
		<content:encoded><![CDATA[<p>Hi Marius,</p>
<p>About DS_Store: Very weird.</p>
<p>If I type like I wrote on this page:<br />
find . -name *.DS_Store -type f<br />
I get a list of all .DS_Store files. It works just fine for me on Mac OSX 10.5 and 10.6.</p>
<p>If I instead type like you suggested:<br />
find . -name ‘*.DS_Store’ -type f<br />
I get no results</p>
<p>Regarding Spotlight. What I use it for is to enable searching within a specific DMG file, not all DMG files. In my case I store my Mail data, Adium and Skype data inside an encrypted DMG file and have linked the regular folders to folders within this DMG file. To be able to search emails then in Mail I have to enable Spotlight indexing inside this specific DMG file. So my tip won&#8217;t enable Spotlight to index all DMG files, it will just enable indexing of a specific DMG file used for user data.</p>
<p>Cheers<br />
Johan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marius van Witzenburg</title>
		<link>http://www.sanneblad.com/about/mac-osx-tips/comment-page-1/#comment-177</link>
		<dc:creator>Marius van Witzenburg</dc:creator>
		<pubDate>Mon, 28 Jun 2010 20:49:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.sanneblad.com/?page_id=104#comment-177</guid>
		<description>Your way to remove .DS_Store files will result in an error:
%find . -name *.DS_Store -type f -exec rm {} \;
find: No match.

The correct way to remove .DS_Store files:
%find . -name &#039;*.DS_Store&#039; -type f -exec rm &#039;{}&#039; \;

Tho its not smart to remove .DS_Store files from your Mac OS X file system since you also remove meta data that has been saved to the .DS_Store file.

In case you want to clear out the ._meta_resource files, use the following:
%dotclean

This is a default Mac OS X command for 10.6 which cleans out these files.
Again, keep in mind that you don&#039;t do this on a mounted file system that is NOT HFS+ since this will result again in loss of your meta data.

Another thing, watch out with enabling spotlight for DMG files, lets say you have an install directory containing different installation files that might be quite large (xcode, &gt;2GB) can result into a really slow response of Spotlight and it slows your Mac down a lot while scanning the DMG files.

This is my 50 cent addition to your blog, keep on going :-)</description>
		<content:encoded><![CDATA[<p>Your way to remove .DS_Store files will result in an error:<br />
%find . -name *.DS_Store -type f -exec rm {} \;<br />
find: No match.</p>
<p>The correct way to remove .DS_Store files:<br />
%find . -name &#8216;*.DS_Store&#8217; -type f -exec rm &#8216;{}&#8217; \;</p>
<p>Tho its not smart to remove .DS_Store files from your Mac OS X file system since you also remove meta data that has been saved to the .DS_Store file.</p>
<p>In case you want to clear out the ._meta_resource files, use the following:<br />
%dotclean</p>
<p>This is a default Mac OS X command for 10.6 which cleans out these files.<br />
Again, keep in mind that you don&#8217;t do this on a mounted file system that is NOT HFS+ since this will result again in loss of your meta data.</p>
<p>Another thing, watch out with enabling spotlight for DMG files, lets say you have an install directory containing different installation files that might be quite large (xcode, &gt;2GB) can result into a really slow response of Spotlight and it slows your Mac down a lot while scanning the DMG files.</p>
<p>This is my 50 cent addition to your blog, keep on going <img src='http://www.sanneblad.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: johan</title>
		<link>http://www.sanneblad.com/about/mac-osx-tips/comment-page-1/#comment-169</link>
		<dc:creator>johan</dc:creator>
		<pubDate>Tue, 22 Jun 2010 19:00:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.sanneblad.com/?page_id=104#comment-169</guid>
		<description>Thanks JorisX, I didn&#039;t know about that one! I will still continue adding them my way though since I need them synced to my iPhone. But it was an interesting approach to change the date format on the system.</description>
		<content:encoded><![CDATA[<p>Thanks JorisX, I didn&#8217;t know about that one! I will still continue adding them my way though since I need them synced to my iPhone. But it was an interesting approach to change the date format on the system.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jorisx</title>
		<link>http://www.sanneblad.com/about/mac-osx-tips/comment-page-1/#comment-168</link>
		<dc:creator>jorisx</dc:creator>
		<pubDate>Tue, 22 Jun 2010 18:56:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.sanneblad.com/?page_id=104#comment-168</guid>
		<description>Official way to add weeknumbers: 
http://mariusvw.com/2010/05/24/add-week-numbers-to-ical-on-mac-os-x/</description>
		<content:encoded><![CDATA[<p>Official way to add weeknumbers:<br />
<a href="http://mariusvw.com/2010/05/24/add-week-numbers-to-ical-on-mac-os-x/" rel="nofollow">http://mariusvw.com/2010/05/24/add-week-numbers-to-ical-on-mac-os-x/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
