I\'m searching for just one command — nothing with && or | — that creates a directory and then immediately cha
&&
|
mkdir temp ; cd temp ; mv ../temp ../myname
You can alias like this:
alias mkcd 'mkdir temp ; cd temp ; mv ../temp ../'