Show/hide hidden files in Finder: boolean needs to be all caps to work in Mavericks

This commit is contained in:
Matthias Kretschmann 2013-10-06 21:16:23 +02:00
parent 176be0d707
commit 6bc3dd0686
1 changed files with 2 additions and 2 deletions

View File

@ -18,5 +18,5 @@ alias update='sudo softwareupdate -i -a; brew update; brew upgrade; brew cleanup
alias cleanup="find . -type f -name '*.DS_Store' -ls -delete"
# Show/hide hidden files in Finder
alias show="defaults write com.apple.Finder AppleShowAllFiles -bool true && killall Finder"
alias hide="defaults write com.apple.Finder AppleShowAllFiles -bool false && killall Finder"
alias show="defaults write com.apple.Finder AppleShowAllFiles -bool TRUE && killall Finder"
alias hide="defaults write com.apple.Finder AppleShowAllFiles -bool FALSE && killall Finder"