1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-06-14 09:51:41 +00:00

Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh

This commit is contained in:
SuprDewd
2011-01-10 17:56:38 +00:00
4 changed files with 25 additions and 3 deletions

View File

@ -36,5 +36,9 @@ cd () {
alias md='mkdir -p'
alias rd=rmdir
alias d='dirs -v'
alias d='dirs -v'
# mkdir & cd to it
function mcd() {
mkdir -p "$1" && cd "$1";
}