Tutorials: Difference between revisions

From chaoswiki
Jump to navigation Jump to search
Line 12: Line 12:
What about this one?<br/>
What about this one?<br/>
Rid your external HD of those friggin .DS_Store files.<br/>
Rid your external HD of those friggin .DS_Store files.<br/>
<tt>find /Volumes/yourfatexternalvolume -iname .ds_* -exec rm {} \;
<tt># find /Volumes/yourfatexternalvolume -iname .ds_* -exec rm {} \;

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 {} \;