1
0
mirror of https://github.com/kremalicious/dotfiles.git synced 2024-06-23 01:36:24 +02:00

emptytrash alias

This commit is contained in:
Matthias Kretschmann 2014-05-23 16:34:51 +02:00
parent 2865477558
commit e7a07e2493

View File

@ -16,6 +16,10 @@ alias update='sudo softwareupdate -i -a; brew update; brew upgrade; brew cleanup
# Recursively delete `.DS_Store` files
alias cleanup="find . -type f -name '*.DS_Store' -ls -delete"
# Empty the Trash on all mounted volumes and the main HDD
# Also, clear Apples System Logs to improve shell startup speed
alias emptytrash="sudo rm -rfv /Volumes/*/.Trashes; sudo rm -rfv ~/.Trash; sudo rm -rfv /private/var/log/asl/*.asl"
# Show/hide hidden files in Finder
alias show="defaults write com.apple.Finder AppleShowAllFiles -bool TRUE && killall Finder"
alias hide="defaults write com.apple.Finder AppleShowAllFiles -bool FALSE && killall Finder"