104
73

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Mac】隠しファイルを常に表示させる

Last updated at Posted at 2019-02-15

概要

.git.gitignoreを作ってあるか気になった時に、いちいちショートカットを入れるのは不都合が多かったので、忘備録として。

具体的方法

下記のコマンドをターミナルで実行。

ターミナル
$ defaults write com.apple.finder AppleShowAllFiles TRUE
$ killall Finder

オフにしたい場合

下記を実行します。

ターミナル
$ defaults write com.apple.finder AppleShowAllFiles FALSE
$ killall Finder

ちなみに

キーボードショートカットで表示/非表示を切り替えるには

+ Shift + .

をfinder上で入れてあげればOKです。

参考文献

Mac - Finderで隠しファイル・フォルダを表示する方法 - PC設定のカルマ

104
73
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
104
73

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?