#mkdir, like it was meant to be!#
##Here is how you do it##
Open up an editor and create a script file, in my case "mkdirn.sh". And inside the file we will put the following:
mkdir $1
cd $1
The $1 refers to what ever we put after our initial command in the case of mkdir abc $1 refers to abc.