Macで「.htaccess」などの不可視設定のファイルを表示させる

ターミナルで

defaults write com.apple.finder AppleShowAllFiles TRUE

を実行後、続けて下記コマンドを実行しファインダーを再起動します。

killall Finder

これでデスクトップを確認してみると、「.DSstore」などの不可視設定になっているファイルを確認することができます。

戻すには

defaults write com.apple.finder AppleShowAllFiles FALSE
killall Finder

で元に戻せます。