We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I have these aliases in my .bashrc file
alias bonsai="tree -I 'tmp|node_modules|bower_components'" alias be="bundle exec" alias ber="bundle exec rspec -fp" alias berd="bundle exec rspec -fd" alias bec="bundle exec cucumber --format progress" alias bej="USE_JASMINE_RAKE=true bundle exec rake jasmine:ci" alias bea="if ber ; then if bec ; then bej ; fi ; fi" alias gst="git status"
credit to @ptolemybarnes for the bonsai alias