Commit 2b03b951 authored by Derek Prior's avatar Derek Prior
Browse files

Added function to mkdir and immediately change to it

parent 4fadc302
......@@ -36,5 +36,9 @@ cd () {
alias md='mkdir -p'
alias rd=rmdir
alias d='dirs -v'
alias d='dirs -v'
\ No newline at end of file
# mkdir & cd to it
function mcd() {
mkdir -p "$1" && cd "$1";
}
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment