> For the complete documentation index, see [llms.txt](https://til.yulrizka.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.yulrizka.com/osx/show-hidden-file.md).

# show hidden file

Tho show hidden file (file with `x`):

**Mojave**:

In finder `CMD + Shift + .` to toggle it

**Before Mojave**:

Show

```
defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app
```

Hide

```
defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app
```
