I am stuck on trying to create an alias that will cd back a directory, make a new directory with a given name and then cd into it. Here is what I have so far:
alias cdmk="cd .. | mkdir '$1' | cd '$1'"
I just want to be able to type cdmk and then the name of the new directory I want to create and cd into.
Any help you can give would be much appreciated!