Finderで隠しファイル/フォルダを表示するには

Macで.htaccessなどドットで始まるファイル/フォルダは隠しファイル/フォルダとなるため、デフォルトだとFinder上には表示されません。表示させるにはターミナルより以下のコマンドを実行します。

defaults write com.apple.finder AppleShowAllFiles true
killall Finder

非表示にするには以下のコマンドを実行します。

defaults write com.apple.finder AppleShowAllFiles false
killall Finder