dotfiles/zsh/aliases.zsh

15 lines
497 B
Bash
Raw Normal View History

2013-01-19 17:18:29 +04:00
alias reload!='. ~/.zshrc'
alias b='bundle exec'
alias please='sudo'
alias mkbundle='bundle install --path .bundle'
2013-01-19 17:18:29 +04:00
# Services start-ups and shut-downs
alias mysql-start="mysql.server start"
alias mysql-stop="mysql.server stop"
alias mysql-restart="mysql.server restart"
alias redis-start="launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.redis.plist"
alias redis-stop="launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.redis.plist"
alias redis-restart="redis-stop && redis-start"