mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01: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:
parent
f14b00808d
commit
8e7fa7cefc
1 changed files with 6 additions and 0 deletions
|
|
@ -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~
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue