Showing hidden files in Finder

Show hidden files:

defaults write com.apple.finder AppleShowAllFiles -bool true
osascript -e 'tell application "Finder" to quit'
open -a Finder

Hide them again:

defaults write com.apple.finder AppleShowAllFiles -bool false
osascript -e 'tell application "Finder" to quit'
open -a Finder