1
0
Fork 0

OS X Helpers

Add helper aliases for show/hide files. Add helper alias to recursively delete
.DS_Store files.
pull/4/head
Andrew Hodges 14 years ago
parent f14b00808d
commit 8e7fa7cefc

@ -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() { function savepath() {
pwd > ~/.current_path~ pwd > ~/.current_path~
} }

Loading…
Cancel
Save