Tuesday, October 19, 2010

Show and hide hidden files on a Mac

This command shows the hidden files in Finder on a Mac:

$ defaults write com.apple.finder AppleShowAllFiles TRUE
$ killall Finder

and this hides them again:

$ defaults write com.apple.finder AppleShowAllFiles FALSE
$ killall Finder

No comments:

Post a Comment