1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

Fix mcd to work with nested directories

This commit is contained in:
Joe Groocock 2016-08-03 17:10:37 +01:00
parent 92e4f3e6da
commit 2b3cb3d70b

View File

@ -16,7 +16,7 @@ alias al=la # No, I don't need the Mono Assembly Linker
alias md="mkdir -p"
mcd(){
mkdir $1 && cd $1
mkdir -p $1 && cd $1
}
alias grep='grep --color'
alias -g H='| head'