<?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/"
	xmlns:go='http://ns.gigaom.com/'
xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Quick Tip: Show/Hide Hidden Files</title>
	<atom:link href="http://gigaom.com/apple/quick-tip-showhide-hidden-files/feed/" rel="self" type="application/rss+xml" />
	<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/</link>
	<description></description>
	<lastBuildDate>Sat, 11 Feb 2012 06:01:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Mike Cheung</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-626674</link>
		<dc:creator><![CDATA[Mike Cheung]]></dc:creator>
		<pubDate>Thu, 26 May 2011 09:53:48 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-626674</guid>
		<description><![CDATA[Someone (nikolar) had asked about this in the other comment section but for some reason I wasn&#039;t able to reply to it. I retooled the two services into one that toggles between showing and hiding the hidden files:

VALUE=$(defaults read com.apple.finder AppleShowAllFiles).
if [ &quot;$VALUE&quot; = FALSE ]; then.
	defaults write com.apple.finder AppleShowAllFiles TRUE.
else
	defaults write com.apple.finder AppleShowAllFiles FALSE.
fi
osascript -e &#039;tell application &quot;Finder&quot; to quit&#039;;.
osascript -e &#039;tell application &quot;Finder&quot; to activate&#039;;.]]></description>
		<content:encoded><![CDATA[<p>Someone (nikolar) had asked about this in the other comment section but for some reason I wasn&#8217;t able to reply to it. I retooled the two services into one that toggles between showing and hiding the hidden files:</p>
<p>VALUE=$(defaults read com.apple.finder AppleShowAllFiles).<br />
if [ "$VALUE" = FALSE ]; then.<br />
	defaults write com.apple.finder AppleShowAllFiles TRUE.<br />
else<br />
	defaults write com.apple.finder AppleShowAllFiles FALSE.<br />
fi<br />
osascript -e &#8216;tell application &#8220;Finder&#8221; to quit&#8217;;.<br />
osascript -e &#8216;tell application &#8220;Finder&#8221; to activate&#8217;;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shannon</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-592222</link>
		<dc:creator><![CDATA[Shannon]]></dc:creator>
		<pubDate>Sun, 13 Feb 2011 23:08:12 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-592222</guid>
		<description><![CDATA[I followed these steps. When I went into Finder &gt; Documents...all my Documents are now missing. Are my documents deleted forever?]]></description>
		<content:encoded><![CDATA[<p>I followed these steps. When I went into Finder &gt; Documents&#8230;all my Documents are now missing. Are my documents deleted forever?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shannon</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-592217</link>
		<dc:creator><![CDATA[Shannon]]></dc:creator>
		<pubDate>Sun, 13 Feb 2011 23:00:32 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-592217</guid>
		<description><![CDATA[Ok, so I followed these steps, and now when I go into my Documents Folder..there&#039;s nothing there. Have all my Documents been deleted??]]></description>
		<content:encoded><![CDATA[<p>Ok, so I followed these steps, and now when I go into my Documents Folder..there&#8217;s nothing there. Have all my Documents been deleted??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nova media</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-572640</link>
		<dc:creator><![CDATA[nova media]]></dc:creator>
		<pubDate>Mon, 10 Jan 2011 12:15:06 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-572640</guid>
		<description><![CDATA[If you want to hide some files on your Mac from curious eyes, then there is a solution available. It is called UberMask. It allows to hide/show files with a single keystroke. Available for test here: http://www.novamedia.de/en/mac-ubermask.html]]></description>
		<content:encoded><![CDATA[<p>If you want to hide some files on your Mac from curious eyes, then there is a solution available. It is called UberMask. It allows to hide/show files with a single keystroke. Available for test here: <a href="http://www.novamedia.de/en/mac-ubermask.html" rel="nofollow">http://www.novamedia.de/en/mac-ubermask.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vijay</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-552034</link>
		<dc:creator><![CDATA[Vijay]]></dc:creator>
		<pubDate>Wed, 15 Dec 2010 22:31:14 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-552034</guid>
		<description><![CDATA[This works great, but two things happened.  The script showed the hidden files, but also show how much used/free space is on my local drives.  I was able to run the script to now show the hidden files, but my local drives still know the used/free space.  How do I get rid of that?]]></description>
		<content:encoded><![CDATA[<p>This works great, but two things happened.  The script showed the hidden files, but also show how much used/free space is on my local drives.  I was able to run the script to now show the hidden files, but my local drives still know the used/free space.  How do I get rid of that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zach</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-533847</link>
		<dc:creator><![CDATA[zach]]></dc:creator>
		<pubDate>Fri, 03 Dec 2010 16:05:04 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-533847</guid>
		<description><![CDATA[Thanks Melanie this worked perfect]]></description>
		<content:encoded><![CDATA[<p>Thanks Melanie this worked perfect</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nicole Weber</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-528604</link>
		<dc:creator><![CDATA[nicole Weber]]></dc:creator>
		<pubDate>Wed, 01 Dec 2010 04:01:03 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-528604</guid>
		<description><![CDATA[cmd click not working... don&#039;t know why i cannot get the pop up box? please help]]></description>
		<content:encoded><![CDATA[<p>cmd click not working&#8230; don&#8217;t know why i cannot get the pop up box? please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CamJH</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-509371</link>
		<dc:creator><![CDATA[CamJH]]></dc:creator>
		<pubDate>Fri, 12 Nov 2010 11:22:01 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-509371</guid>
		<description><![CDATA[When I open Automator, what template do i use???]]></description>
		<content:encoded><![CDATA[<p>When I open Automator, what template do i use???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Wilson</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-505630</link>
		<dc:creator><![CDATA[James Wilson]]></dc:creator>
		<pubDate>Tue, 09 Nov 2010 13:19:33 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-505630</guid>
		<description><![CDATA[Thanks for this writeup!  You should update it (or provide new instructions)  for the changes to Automator right-click menu functionality in Snow Leopard.

I found the following comment to be useful, that describes the changes.
http://forums.macrumors.com/showpost.php?p=8713076&amp;postcount=3


The steps to get the Automator script right-click menu items back in Snow Leopard are:

1. Open Automater.
2. Choose the &#039;Service&#039;  template
3. Specify that the service receives input from &#039;files or folders&#039;  in application &#039;Finder&#039;
4. Find and Drag the &#039;Run Shell Script&#039; action from the Actions sidebar.
5. Paste in the commands mentioned in the original instructions.
6. Save the script according to the original instructions.
7. Repeat these instructions for both &#039;Show Hidden Files&#039; and &#039;Hide Hidden Files&#039;.

To see it in action just right click on any file or folder in finder,  and there will be a new &#039;Services&#039; menu &gt; Hide Hidden Files,  Show Hidden Files.

Note you can also make this option appear in the MAIN application Services menu (eg, Finder &gt; Services &gt; Hide Hidden Files).   In step #3,  choose &#039;no input&#039; instead of &#039;files or folders&#039;.]]></description>
		<content:encoded><![CDATA[<p>Thanks for this writeup!  You should update it (or provide new instructions)  for the changes to Automator right-click menu functionality in Snow Leopard.</p>
<p>I found the following comment to be useful, that describes the changes.<br />
<a href="http://forums.macrumors.com/showpost.php?p=8713076&#038;postcount=3" rel="nofollow">http://forums.macrumors.com/showpost.php?p=8713076&#038;postcount=3</a></p>
<p>The steps to get the Automator script right-click menu items back in Snow Leopard are:</p>
<p>1. Open Automater.<br />
2. Choose the &#8216;Service&#8217;  template<br />
3. Specify that the service receives input from &#8216;files or folders&#8217;  in application &#8216;Finder&#8217;<br />
4. Find and Drag the &#8216;Run Shell Script&#8217; action from the Actions sidebar.<br />
5. Paste in the commands mentioned in the original instructions.<br />
6. Save the script according to the original instructions.<br />
7. Repeat these instructions for both &#8216;Show Hidden Files&#8217; and &#8216;Hide Hidden Files&#8217;.</p>
<p>To see it in action just right click on any file or folder in finder,  and there will be a new &#8216;Services&#8217; menu &gt; Hide Hidden Files,  Show Hidden Files.</p>
<p>Note you can also make this option appear in the MAIN application Services menu (eg, Finder &gt; Services &gt; Hide Hidden Files).   In step #3,  choose &#8216;no input&#8217; instead of &#8216;files or folders&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: r</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-320608</link>
		<dc:creator><![CDATA[r]]></dc:creator>
		<pubDate>Wed, 06 Oct 2010 10:07:52 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-320608</guid>
		<description><![CDATA[I was having trouble with Automator on my laptop and found this much MUCH simpler alternative using Terminal...

http://il.youtube.com/watch?v=lBCaPLrN5Mw]]></description>
		<content:encoded><![CDATA[<p>I was having trouble with Automator on my laptop and found this much MUCH simpler alternative using Terminal&#8230;</p>
<p><a href="http://il.youtube.com/watch?v=lBCaPLrN5Mw" rel="nofollow">http://il.youtube.com/watch?v=lBCaPLrN5Mw</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Android the Mac-Eclipse way &#124; BackyardRocket.com</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-320607</link>
		<dc:creator><![CDATA[Android the Mac-Eclipse way &#124; BackyardRocket.com]]></dc:creator>
		<pubDate>Mon, 27 Sep 2010 03:21:04 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-320607</guid>
		<description><![CDATA[[...] You can place the SDK anywhere you like. I&#8217;ve seen many suggest placing the Android SDK in the  /Developer folder.  I leave this directory to the apple developer tools and place SDKs in the more traditional /usr/lib. The /usr/lib directory is hidden by default. You will need to show hidden files to see it in the finder. If you develop on the Mac, you probably know how to show/hide invisible files, if not I like this method: Show/Hide Hidden Files. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] You can place the SDK anywhere you like. I&#8217;ve seen many suggest placing the Android SDK in the  /Developer folder.  I leave this directory to the apple developer tools and place SDKs in the more traditional /usr/lib. The /usr/lib directory is hidden by default. You will need to show hidden files to see it in the finder. If you develop on the Mac, you probably know how to show/hide invisible files, if not I like this method: Show/Hide Hidden Files. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-320606</link>
		<dc:creator><![CDATA[Robert]]></dc:creator>
		<pubDate>Wed, 21 Jul 2010 06:24:53 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-320606</guid>
		<description><![CDATA[Hi...
i can&#039;t find save as plugin... in automator menu...
what am I missing? is this only for older version of automator?

Thanks,
Robert]]></description>
		<content:encoded><![CDATA[<p>Hi&#8230;<br />
i can&#8217;t find save as plugin&#8230; in automator menu&#8230;<br />
what am I missing? is this only for older version of automator?</p>
<p>Thanks,<br />
Robert</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lance</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-320605</link>
		<dc:creator><![CDATA[Lance]]></dc:creator>
		<pubDate>Mon, 05 Jul 2010 02:18:33 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-320605</guid>
		<description><![CDATA[It worked fine in Snow Leopard for me.  Here&#039;s what I did:

- started automator
- choose work flow as the template type
- clicked Utilities on the far left window
- dragged then dropped Run Shell Script into Workflow window
- delete the &quot;cat&quot; text and then paste in the:

defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder

- File --&gt; Save As
     - name it and choose Application as the type
- That&#039;s it!]]></description>
		<content:encoded><![CDATA[<p>It worked fine in Snow Leopard for me.  Here&#8217;s what I did:</p>
<p>- started automator<br />
- choose work flow as the template type<br />
- clicked Utilities on the far left window<br />
- dragged then dropped Run Shell Script into Workflow window<br />
- delete the &#8220;cat&#8221; text and then paste in the:</p>
<p>defaults write com.apple.finder AppleShowAllFiles TRUE<br />
killall Finder</p>
<p>- File &#8211;&gt; Save As<br />
     &#8211; name it and choose Application as the type<br />
- That&#8217;s it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-320604</link>
		<dc:creator><![CDATA[John]]></dc:creator>
		<pubDate>Thu, 01 Jul 2010 17:12:31 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-320604</guid>
		<description><![CDATA[&lt;p&gt;The above procedure doesn&#039;t work with Snow Leop-ard.  There is no &quot;Save As Plug-in&quot; option available.&lt;/p&gt;

&lt;p&gt;Nor is Applications listed in the Library.&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>The above procedure doesn&#8217;t work with Snow Leop-ard.  There is no &#8220;Save As Plug-in&#8221; option available.</p>
<p>Nor is Applications listed in the Library.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Melanie</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-320603</link>
		<dc:creator><![CDATA[Melanie]]></dc:creator>
		<pubDate>Wed, 23 Jun 2010 19:24:57 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-320603</guid>
		<description><![CDATA[&lt;p&gt;You&#039;re welcome. I wonder why you two weren&#039;t able to get it to work. I simply typed the EXACT steps I used and it works just fine for me. Who knows. I&#039;m glad you found something else that works at least. This was a big hassle for me when I was trying to figure it out.&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome. I wonder why you two weren&#8217;t able to get it to work. I simply typed the EXACT steps I used and it works just fine for me. Who knows. I&#8217;m glad you found something else that works at least. This was a big hassle for me when I was trying to figure it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://gigaom.com/apple/quick-tip-showhide-hidden-files/#comment-320602</link>
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Fri, 18 Jun 2010 17:34:19 +0000</pubDate>
		<guid isPermaLink="false">http://theappleblog.com/2007/04/30/quick-tip-showhide-hidden-files/#comment-320602</guid>
		<description><![CDATA[&lt;p&gt;Thanks Melanie and Jessica!  I couldn&#039;t get Automator to work for me either, but the widget is great!&lt;/p&gt;

&lt;p&gt;Thanks again :)&lt;/p&gt;
]]></description>
		<content:encoded><![CDATA[<p>Thanks Melanie and Jessica!  I couldn&#8217;t get Automator to work for me either, but the widget is great!</p>
<p>Thanks again :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

