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 () { ...@@ -36,5 +36,9 @@ cd () {
alias md='mkdir -p' alias md='mkdir -p'
alias rd=rmdir alias rd=rmdir
alias d='dirs -v'
alias d='dirs -v' # mkdir & cd to it
\ No newline at end of file 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