-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1078 from utelecon/202405-eccs-misc-dotfiles
Add /eccs/misc/dotfiles
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
title: Mac環境のFinderで`.`で始まるファイルやディレクトリが見えない | ||
breadcrumb: | ||
title: Mac環境のFinderで「.」で始まるファイルやディレクトリが見えない | ||
--- | ||
|
||
Mac環境のFinderで`.public_html`などの`.`(ピリオド)で始まるファイルやディレクトリが見えない場合の解決方法を説明します. | ||
|
||
一般的に,`.`で始まる名前のファイルやディレクトリには,利用者の直接の操作によらず自動的に作成・更新されるものが多くあります.そのため,誤って消去・変更してしまうことを防ぐために,アプリケーションによっては,標準の設定ではそれらのファイルが表示されない場合があります. | ||
|
||
Mac環境のFinderでも,標準の設定ではそのようになっています.Finderで,`.`で始まるファイルやディレクトリを表示させたい場合,次の2つの方法のいずれかが便利です. | ||
|
||
- 方法1:キーボードで,⌘+⇧+"."(コマンド + シフト + ピリオド)のショートカットキーを押してください. | ||
- 方法2:ターミナルで,次のコマンドを順に実行してください. | ||
``` | ||
defaults write com.apple.finder AppleShowAllFiles ON | ||
``` | ||
``` | ||
killall Finder | ||
``` | ||
|
||
なお,方法2は動作しないことがあるようです.方法2で対象のファイルやディレクトリが表示されないときは,方法1を利用してください. |