Commit 18293cd7 authored by Andrew Hodges's avatar Andrew Hodges
Browse files

OS X Helpers

Add helper aliases for show/hide files. Add helper alias to recursively delete
.DS_Store files.
parent d72b9c5e
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~
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment