Tutorials: Difference between revisions

From chaoswiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 4: Line 4:


== Security ==
== Security ==

== Unix / Terminal ==
Want the finder to show you all the hidden files?<br/>
<tt>defaults write com.apple.finder AppleShowAllFiles TRUE</tt><br/>
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 {} \;

Latest revision as of 19:56, 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 {} \;