Macで隠しファイルを表示する方法
.bash_historyとかのドットファイルをFinderでも表示させる。
defaultsコマンドを使うとできるらしい。
(defaultsはplist(プロパティリスト)と呼ばれる設定ファイルの設定値を変更するコマンド)
$ defaults write com.apple.finder AppleShowAllFiles TRUE
## 確認
$ defaults read com.apple.finder AppleShowAllFiles
TRUE
次のコマンドでFinderを再起動して設定を反映。
$ killall Finder
sierraからは.DS_Store
と.localized
はこの方法でも表示されなくなったようです。
環境
- OS X El Capitan version 10.11.2
- macOS Sierra version 10.12.1
参考サイト
-
Finderで隠しファイル・フォルダを表示 - Mac
http://pc-karuma.net/mac-finder-show-all-files/ -
Macギークなら知っておきたいdefaultsコマンドの使い方
http://tukaikta.blog135.fc2.com/blog-entry-209.html -
macOS 10.12 Sierraでは「.DS_Store」など一部の隠しファイルがFinderに表示されない状態に。
http://applech2.com/archives/macos-10-12-sierra-ds_store.html
編集履歴
- 2016/12/04
- macOS sierraでも確認
- 2016/05/07訂正
-
AppShowAllFiles->AppleShowAllFilesと誤記を修正しました。
-