making dot-files visible in MacOS X Finder

Like GNU/Linux, MacOS X treats files with names that start with a dot as hidden files. While "power users" will have no trouble accessing these files using Terminal.app or iTerm.app , it is sometimes handy to have them displayed in the Finder. A case in point: I recently wanted to restore a dot-file from a Time Machine backup, but the file was hidden in the Time Machine Finder window.
With some command-line-fu one can configure Finder to display dot-files:

   $ defaults write com.apple.finder AppleShowAllFiles TRUE
   $ killall Finder

To revert, simply flip the TRUE to a FALSE:

   $ defaults write com.apple.finder AppleShowAllFiles FALSE
   $ killall Finder

0 Responses to “making dot-files visible in MacOS X Finder”


  1. No Comments

Leave a Reply

You must login to post a comment.