OS X Helpers

Add helper aliases for show/hide files. Add helper alias to recursively delete
.DS_Store files.
This commit is contained in:
Andrew Hodges 2011-05-28 11:27:50 -04:00
parent d72b9c5ec5
commit 18293cd724

View File

@ -1,3 +1,9 @@
alias showfiles='defaults write com.apple.finder AppleShowAllFiles TRUE; killall Finder'
alias hidefiles='defaults write com.apple.finder AppleShowAllFiles FALSE; killall Finder'
# Recursively delete .DS_Store files
alias rm-dsstore="find . -name '*.DS_Store' -type f -delete"
function savepath() {
pwd > ~/.current_path~
}