Quite often I need to perform this two commands:
mkdir abc
cd abc
I am curious whether there is a simple command (or an alias that I can create and use) to do it in one go, like
user@GROUP:~$ mdcd abc
user@GROUP:~/abc$
Is this possible?
Quite often I need to perform this two commands:
mkdir abc
cd abc
I am curious whether there is a simple command (or an alias that I can create and use) to do it in one go, like
user@GROUP:~$ mdcd abc
user@GROUP:~/abc$
Is this possible?
source ~/.bashrc
. – deltab May 05 '14 at 18:12.bashrc
wasn't expected to be loaded twice. Just start a new shell is safer. – cuonglm May 31 '17 at 06:25