Tutorials: Difference between revisions

From chaoswiki
Jump to navigation Jump to search
(→‎Unix / Terminal: Show hidden files in Finder.app)
Line 6: Line 6:


== Unix / Terminal ==
== Unix / Terminal ==
Want the finder to show you all the hidden files?
Want the finder to show you all the hidden files?<br/>
<tt>defaults write com.apple.finder AppleShowAllFiles TRUE</tt>
<tt>defaults write com.apple.finder AppleShowAllFiles TRUE</tt><br/>
BTW, I think it's lame, but it's just a test anyway.
BTW, I think it's lame, but it's just a test anyway.

What about this one?<br/>
Rid your external HD of those friggin .DS_Store files.<br/>
<tt>find /Volumes/yourfatexternalvolume -iname .ds_* -exec rm {} \;

Revision as of 19:54, 14 June 2006

Cryptography

Networking

Security

Unix / Terminal

Want the finder to show you all the hidden files?
defaults write com.apple.finder AppleShowAllFiles TRUE
BTW, I think it's lame, but it's just a test anyway.

What about this one?
Rid your external HD of those friggin .DS_Store files.
find /Volumes/yourfatexternalvolume -iname .ds_* -exec rm {} \;