diff --git a/.bash_functions b/.bash_functions index 0d97343..092d7dc 100644 --- a/.bash_functions +++ b/.bash_functions @@ -94,3 +94,10 @@ extract () { return 1 fi } + +mcd () { + + mkdir -p $1 + cd $1 + +}