In order to show hidden files and folders on a MAC, execute the following command in a terminal window:
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder
In order to turn it back off, switch the TRUE to FALSE:
defaults write com.apple.finder AppleShowAllFiles FALSE
killall Finder