This commit is contained in:
GitHub Merge Button 2011-12-14 21:48:52 -08:00
commit 3660c1cefb
2 changed files with 10 additions and 0 deletions

View file

@ -22,3 +22,8 @@ alias sl=ls # often screw this up
alias afind='ack-grep -il' alias afind='ack-grep -il'
# global aliases
alias -g G=' | grep '
alias -g L=' | less '

View file

@ -17,3 +17,8 @@ alias rp='_rails_command plugin'
alias rs='_rails_command server' alias rs='_rails_command server'
alias rsd='_rails_command server --debugger' alias rsd='_rails_command server --debugger'
alias devlog='tail -f log/development.log' alias devlog='tail -f log/development.log'
# set environment aliases
alias -g RT=' RAILS_ENV=test '
alias -g RP=' RAILS_ENV=production '
alias -g RS=' RAILS_ENV=staging '