1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00

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~
}