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

22 lines
873 B
Plaintext
Raw Normal View History

# ----------------------------------------------------------------------
# ALIASES
# ----------------------------------------------------------------------
alias ll='ls -la'
# Get into some servers FAST. Server, user & port are in .ssh/config
alias krlc='ssh kremalicious'
alias mlublogs='ssh mlublogs'
# Terminal needs more Espresso
alias esp="open -a Espresso"
# Update All The Things
2013-08-28 11:35:14 +02:00
alias update='sudo softwareupdate -i -a; brew update; brew upgrade; brew cleanup; npm update npm -g; npm update -g; sudo gem update --system; sudo gem update'
# Recursively delete `.DS_Store` files
alias cleanup="find . -type f -name '*.DS_Store' -ls -delete"
# 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"