Tutorials: Difference between revisions
Jump to navigation
Jump to search
Madconqueror (talk | contribs) (→Unix / Terminal: Show hidden files in Finder.app) |
Madconqueror (talk | contribs) No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
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 {} \; |
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 {} \;